diff options
| -rw-r--r-- | oatdump/oatdump.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/oatdump/oatdump.cc b/oatdump/oatdump.cc index 69e767dbd3..7b9ce5bd1b 100644 --- a/oatdump/oatdump.cc +++ b/oatdump/oatdump.cc @@ -395,6 +395,9 @@ class OatDumper { os << "MAGIC:\n"; os << oat_header.GetMagic() << "\n\n"; + os << "LOCATION:\n"; + os << oat_file_.GetLocation() << "\n\n"; + os << "CHECKSUM:\n"; os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum()); |