From e95e6b90701a0b9d396be8aa4cb7f3facf6bf71c Mon Sep 17 00:00:00 2001 From: Christian Thalinger Date: Tue, 26 Feb 2013 16:16:54 -0800 Subject: [PATCH] 8004336: Better handling of method handle intrinsic frames Reviewed-by: kvn, jrose, ahgross --- hotspot/src/share/vm/opto/library_call.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hotspot/src/share/vm/opto/library_call.cpp b/hotspot/src/share/vm/opto/library_call.cpp index cdcb9417760..fd5027eaad2 100644 --- a/hotspot/src/share/vm/opto/library_call.cpp +++ b/hotspot/src/share/vm/opto/library_call.cpp @@ -4005,8 +4005,9 @@ bool LibraryCallKit::is_method_invoke_or_aux_frame(JVMState* jvms) { } } } - else if (method->is_method_handle_intrinsic() || - method->is_compiled_lambda_form()) { + + if (method->is_method_handle_intrinsic() || + method->is_compiled_lambda_form()) { // This is an internal adapter frame from the MethodHandleCompiler -- skip it return true; }