diff options
author | Ian Rogers <irogers@google.com> | 2014-11-19 21:09:12 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-11-19 21:09:15 +0000 |
commit | 834896de1c955c04d781d2bf8c53573f94ce8c3e (patch) | |
tree | 7152aa7bebe9a82f7b35b3f233aacaf6e3e72ea7 /oatdump | |
parent | 7b5f98e0c17785ec64eb291856cd08dcd3d19ce1 (diff) | |
parent | a37d925d405be9f589ac282869a997e73414d859 (diff) | |
download | art-834896de1c955c04d781d2bf8c53573f94ce8c3e.zip art-834896de1c955c04d781d2bf8c53573f94ce8c3e.tar.gz art-834896de1c955c04d781d2bf8c53573f94ce8c3e.tar.bz2 |
Merge "Improvements to the ARM64 disassembler."
Diffstat (limited to 'oatdump')
-rw-r--r-- | oatdump/oatdump.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/oatdump/oatdump.cc b/oatdump/oatdump.cc index ea71996..feee598 100644 --- a/oatdump/oatdump.cc +++ b/oatdump/oatdump.cc @@ -388,7 +388,8 @@ class OatDumper { options_(options), disassembler_(Disassembler::Create(oat_file_.GetOatHeader().GetInstructionSet(), new DisassemblerOptions(options_->absolute_addresses_, - oat_file.Begin()))) { + oat_file.Begin(), + true /* can_read_litals_ */))) { CHECK(options_->class_loader_ != nullptr); AddAllOffsets(); } |