# HG changeset patch # User twisti # Date 1361924214 28800 # Node ID 3d641132f83b348c6a53067ef5a8977a737e0598 # Parent 4f7380dca47e9b123e6ecae2dd8fb39bcb6c9b2a 8004336: Better handling of method handle intrinsic frames Reviewed-by: kvn, jrose, ahgross diff -r 4f7380dca47e -r 3d641132f83b src/share/vm/opto/library_call.cpp --- a/src/share/vm/opto/library_call.cpp Thu Mar 21 10:42:51 2013 -0700 +++ b/src/share/vm/opto/library_call.cpp Tue Feb 26 16:16:54 2013 -0800 @@ -4005,8 +4005,9 @@ } } } - 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; }