diff options
Diffstat (limited to 'oatdump/oatdump.cc')
| -rw-r--r-- | oatdump/oatdump.cc | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/oatdump/oatdump.cc b/oatdump/oatdump.cc index 631d53825f..12970fcaab 100644 --- a/oatdump/oatdump.cc +++ b/oatdump/oatdump.cc @@ -171,18 +171,10 @@ class OatDumper { os << "IMAGE FILE LOCATION OAT BEGIN:\n"; os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin()); - // Print the key-value store. - { - os << "KEY VALUE STORE:\n"; - size_t index = 0; - const char* key; - const char* value; - while (oat_header.GetStoreKeyValuePairByIndex(index, &key, &value)) { - os << key << " = " << value << "\n"; - index++; - } - os << "\n"; - } + os << "IMAGE FILE LOCATION:\n"; + const std::string image_file_location(oat_header.GetImageFileLocation()); + os << image_file_location; + os << "\n\n"; os << "BEGIN:\n"; os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n"; |