diff options
Diffstat (limited to 'runtime/dex_to_dex_decompiler.h')
-rw-r--r-- | runtime/dex_to_dex_decompiler.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/dex_to_dex_decompiler.h b/runtime/dex_to_dex_decompiler.h index d7cb1641e1..804b7e830a 100644 --- a/runtime/dex_to_dex_decompiler.h +++ b/runtime/dex_to_dex_decompiler.h @@ -29,7 +29,8 @@ 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::CodeItem& code_item, +bool ArtDecompileDEX(const DexFile* dex_file, + const DexFile::CodeItem& code_item, const ArrayRef<const uint8_t>& quickened_data, bool decompile_return_instruction); |