diff options
Diffstat (limited to 'compiler/dex/quick/quick_compiler.h')
-rw-r--r-- | compiler/dex/quick/quick_compiler.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/compiler/dex/quick/quick_compiler.h b/compiler/dex/quick/quick_compiler.h index 4a39ab3565..d512b256cd 100644 --- a/compiler/dex/quick/quick_compiler.h +++ b/compiler/dex/quick/quick_compiler.h @@ -21,6 +21,10 @@ namespace art { +namespace mirror { +class DexCache; +} + class Compiler; class CompilerDriver; class Mir2Lir; @@ -43,7 +47,8 @@ class QuickCompiler : public Compiler { uint16_t class_def_idx, uint32_t method_idx, jobject class_loader, - const DexFile& dex_file) const OVERRIDE; + const DexFile& dex_file, + Handle<mirror::DexCache> dex_cache) const OVERRIDE; CompiledMethod* JniCompile(uint32_t access_flags, uint32_t method_idx, |