diff options
author | 2022-04-08 08:31:15 +0000 | |
---|---|---|
committer | 2022-04-08 08:35:16 +0000 | |
commit | aa5a644f17aab27dee172642a276bd24e69a5b54 (patch) | |
tree | e06645d2c25b4e59f3724fcfdfaa33b0a7375ec2 /compiler/jni/quick/jni_compiler.h | |
parent | 8bb486a78e350ce6072d71e15cc4f01a142e80d4 (diff) |
Revert "Pass `ArenaAllocator` to JNI compiler."
This reverts commit 601f4e9955be4d25b5ecfe7779d6981a5c1fcbca.
Reason for revert: Bot redness e.g. https://ci.chromium.org/ui/p/art/builders/ci/angler-armv7-debug/2490/overview
Change-Id: If4d84625273305453ff4bb80554b5c8baca241d1
Diffstat (limited to 'compiler/jni/quick/jni_compiler.h')
-rw-r--r-- | compiler/jni/quick/jni_compiler.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/jni/quick/jni_compiler.h b/compiler/jni/quick/jni_compiler.h index 52a6f3cf02..313fcd361e 100644 --- a/compiler/jni/quick/jni_compiler.h +++ b/compiler/jni/quick/jni_compiler.h @@ -24,7 +24,6 @@ namespace art { -class ArenaAllocator; class ArtMethod; class CompilerOptions; class DexFile; @@ -66,8 +65,7 @@ class JniCompiledMethod { JniCompiledMethod ArtQuickJniCompileMethod(const CompilerOptions& compiler_options, uint32_t access_flags, uint32_t method_idx, - const DexFile& dex_file, - ArenaAllocator* allocator); + const DexFile& dex_file); } // namespace art |