diff options
Diffstat (limited to 'runtime/oat_file_assistant.cc')
-rw-r--r-- | runtime/oat_file_assistant.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/oat_file_assistant.cc b/runtime/oat_file_assistant.cc index 9c169e6c63..de3d878302 100644 --- a/runtime/oat_file_assistant.cc +++ b/runtime/oat_file_assistant.cc @@ -111,9 +111,9 @@ OatFileAssistant::OatFileAssistant(const char* dex_location, dex_location_.assign(dex_location); - if (load_executable_ && isa != kRuntimeISA) { + if (load_executable_ && isa != Runtime::GetQuickCodeISA()) { LOG(WARNING) << "OatFileAssistant: Load executable specified, " - << "but isa is not kRuntimeISA. Will not attempt to load executable."; + << "but isa is not executable isa. Will not attempt to load executable."; load_executable_ = false; } |