summaryrefslogtreecommitdiff
path: root/runtime/dex_to_dex_decompiler.h
diff options
context:
space:
mode:
author Mathieu Chartier <mathieuc@google.com> 2018-01-05 17:36:37 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2018-01-05 17:36:37 +0000
commitdaa27bcedade7ff2ee50fbdcbec11a4291b447ee (patch)
tree9b99a0a2c20052ab253e81dd6270cf06eb142865 /runtime/dex_to_dex_decompiler.h
parent70a58af9c733bc14c4573dddd282b3c02ccf4985 (diff)
parent6238c8331bf89ce35a377c6475034243a0791f28 (diff)
Merge "Remove DexFile direct accesses to CodeItem"
Diffstat (limited to 'runtime/dex_to_dex_decompiler.h')
-rw-r--r--runtime/dex_to_dex_decompiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/dex_to_dex_decompiler.h b/runtime/dex_to_dex_decompiler.h
index 804b7e830a..a2e3f28ce9 100644
--- a/runtime/dex_to_dex_decompiler.h
+++ b/runtime/dex_to_dex_decompiler.h
@@ -29,7 +29,7 @@ namespace optimizer {
// to non-const has too many repercussions on the code base. We make it
// consistent with DexToDexCompiler, but we should really change it to
// DexFile::CodeItem*.
-bool ArtDecompileDEX(const DexFile* dex_file,
+bool ArtDecompileDEX(const DexFile& dex_file,
const DexFile::CodeItem& code_item,
const ArrayRef<const uint8_t>& quickened_data,
bool decompile_return_instruction);