diff options
author | 2022-05-12 15:59:11 +0000 | |
---|---|---|
committer | 2022-05-12 19:23:02 +0000 | |
commit | fb1b08cbb9c6ac149d75de16c14fdaa8b68baaa4 (patch) | |
tree | 56096c6f3fc02e63ef1a25a863a0f1c93890b530 /compiler/jni/jni_compiler_test.cc | |
parent | 6898d018f6a48bbc2a8e471850e84e4611c7815c (diff) |
Revert "Reland^2 "Don't use AOT code for native methods for java debuggable runtime""
This reverts commit 5da52cd20ea0d24b038ae20c6c96aa22ac3a24a0.
Reason for revert: https://ci.chromium.org/ui/p/art/builders/ci/host-x86_64-cdex-fast/5172/overview
Change-Id: I9cebbaa145810547531a90af9da7961c0b6255d1
Diffstat (limited to 'compiler/jni/jni_compiler_test.cc')
-rw-r--r-- | compiler/jni/jni_compiler_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/jni/jni_compiler_test.cc b/compiler/jni/jni_compiler_test.cc index d05324baee..0a1f017828 100644 --- a/compiler/jni/jni_compiler_test.cc +++ b/compiler/jni/jni_compiler_test.cc @@ -414,7 +414,7 @@ void JniCompilerTest::AssertCallerObjectLocked(JNIEnv* env) { CHECK(!caller->IsCriticalNative()); CHECK(caller->IsSynchronized()); ObjPtr<mirror::Object> lock; - if (self->GetManagedStack()->GetTopQuickFrameGenericJniTag()) { + if (self->GetManagedStack()->GetTopQuickFrameTag()) { // Generic JNI. lock = GetGenericJniSynchronizationObject(self, caller); } else if (caller->IsStatic()) { |