diff options
Diffstat (limited to 'compiler/jni/quick/jni_compiler.h')
-rw-r--r-- | compiler/jni/quick/jni_compiler.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/jni/quick/jni_compiler.h b/compiler/jni/quick/jni_compiler.h index 313fcd361e..52a6f3cf02 100644 --- a/compiler/jni/quick/jni_compiler.h +++ b/compiler/jni/quick/jni_compiler.h @@ -24,6 +24,7 @@ namespace art { +class ArenaAllocator; class ArtMethod; class CompilerOptions; class DexFile; @@ -65,7 +66,8 @@ class JniCompiledMethod { JniCompiledMethod ArtQuickJniCompileMethod(const CompilerOptions& compiler_options, uint32_t access_flags, uint32_t method_idx, - const DexFile& dex_file); + const DexFile& dex_file, + ArenaAllocator* allocator); } // namespace art |