8004336: Better handling of method handle intrinsic frames
Reviewed-by: kvn, jrose, ahgross
--- a/hotspot/src/share/vm/opto/library_call.cpp Thu Mar 21 10:42:51 2013 -0700
+++ b/hotspot/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;
}