diff options
author | 2017-10-11 10:29:19 +0000 | |
---|---|---|
committer | 2017-10-11 10:29:19 +0000 | |
commit | d108d9eaae26df9e4480cf46d26e8c75f142bd6a (patch) | |
tree | 9a9566b73bd916befb9ce1c31c2ff309d63ff28e /openjdkjvmti/ti_stack.cc | |
parent | a03a9eeb9d1b2ebca17cc326f52c84a5abca6707 (diff) |
Revert "Ensure Proxy frames work with JVMTI stack frame functions"
Reason for revert: gcstress 1914-get-local-instance failures,
object-inl.h:163] Check failed: GetClass<kVerifyNone>() != nullptr
Bug: 66903662
This reverts commit a03a9eeb9d1b2ebca17cc326f52c84a5abca6707.
Change-Id: I5c68616d61566dd4ade713c4dad5e462b76d9af7
Diffstat (limited to 'openjdkjvmti/ti_stack.cc')
-rw-r--r-- | openjdkjvmti/ti_stack.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openjdkjvmti/ti_stack.cc b/openjdkjvmti/ti_stack.cc index e0c139954d..d4cc42ae70 100644 --- a/openjdkjvmti/ti_stack.cc +++ b/openjdkjvmti/ti_stack.cc @@ -789,7 +789,7 @@ jvmtiError StackUtil::GetFrameLocation(jvmtiEnv* env ATTRIBUTE_UNUSED, } *method_ptr = art::jni::EncodeArtMethod(closure.method); - if (closure.method->IsNative() || closure.method->IsProxyMethod()) { + if (closure.method->IsNative()) { *location_ptr = -1; } else { if (closure.dex_pc == art::dex::kDexNoIndex) { |