diff options
| author | 2014-08-28 23:27:53 +0000 | |
|---|---|---|
| committer | 2014-08-28 23:27:54 +0000 | |
| commit | 9ca7d1a973f463f6c53f0b9975c500370ab50ef4 (patch) | |
| tree | 0e2ec6e1ec5120eb69350a23947ed65264dc6da6 | |
| parent | 4eab6436fc68105363178cc5b50dd5eefb807386 (diff) | |
| parent | 1291e9bc87edc8fde56434bc66bef0c62d44a8e6 (diff) | |
Merge "Fix incorect variable name."
| -rw-r--r-- | runtime/gc/space/image_space.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/space/image_space.cc b/runtime/gc/space/image_space.cc index d697678a35..bf897b23d2 100644 --- a/runtime/gc/space/image_space.cc +++ b/runtime/gc/space/image_space.cc @@ -148,7 +148,7 @@ static bool GenerateImage(const std::string& image_filename, InstructionSet imag arg_vector.push_back(oat_file_option_string); Runtime::Current()->AddCurrentRuntimeFeaturesAsDex2OatArguments(&arg_vector); - CHECK_EQ(isa, kRuntimeISA) << "We should always be generating an image for the current isa."; + CHECK_EQ(image_isa, kRuntimeISA) << "We should always be generating an image for the current isa."; int32_t base_offset = ChooseRelocationOffsetDelta(ART_BASE_ADDRESS_MIN_DELTA, ART_BASE_ADDRESS_MAX_DELTA); |