diff src/share/vm/opto/library_call.cpp @ 10119:3d641132f83b

8004336: Better handling of method handle intrinsic frames Reviewed-by: kvn, jrose, ahgross
author twisti
date Tue, 26 Feb 2013 16:16:54 -0800
parents c59b7900a2bd
children 124ca22437b1
line wrap: on
line diff
--- 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;
   }