changeset 4553: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 4f7380dca47e
children 124ca22437b1
files src/share/vm/opto/library_call.cpp
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
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;
   }