From 1291e9bc87edc8fde56434bc66bef0c62d44a8e6 Mon Sep 17 00:00:00 2001 From: Alex Light Date: Thu, 28 Aug 2014 16:23:48 -0700 Subject: [PATCH] Fix incorect variable name. Bug: 16875245 Change-Id: Idd0f7ac677568a53569308a67f1ad613584949a5 --- runtime/gc/space/image_space.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/gc/space/image_space.cc b/runtime/gc/space/image_space.cc index d697678a3..bf897b23d 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); -- 2.11.0