summaryrefslogtreecommitdiff
path: root/runtime/oat_file_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/oat_file_manager.cc')
-rw-r--r--runtime/oat_file_manager.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/oat_file_manager.cc b/runtime/oat_file_manager.cc
index ed55110c7f..111053a6a8 100644
--- a/runtime/oat_file_manager.cc
+++ b/runtime/oat_file_manager.cc
@@ -641,8 +641,9 @@ std::vector<std::unique_ptr<const DexFile>> OatFileManager::OpenDexFilesFromOat(
error_msgs->push_back("Fallback mode disabled, skipping dex files.");
}
} else {
- error_msgs->push_back("No original dex files found for dex location "
- + std::string(dex_location));
+ std::string msg = StringPrintf("No original dex files found for dex location (%s) %s",
+ GetInstructionSetString(kRuntimeISA), dex_location);
+ error_msgs->push_back(msg);
}
}