diff src/share/vm/interpreter/abstractInterpreter.hpp @ 13010:bd3237e0e18d

8026328: Setting a breakpoint on invokedynamic crashes the JVM Reviewed-by: jrose, roland
author twisti
date Thu, 24 Oct 2013 16:23:07 -0700
parents 5ccbab1c69f3
children 096c224171c4 2b8e28fdf503
line wrap: on
line diff
--- a/src/share/vm/interpreter/abstractInterpreter.hpp	Wed Oct 23 19:22:28 2013 +0000
+++ b/src/share/vm/interpreter/abstractInterpreter.hpp	Thu Oct 24 16:23:07 2013 -0700
@@ -158,8 +158,8 @@
   // Runtime support
 
   // length = invoke bytecode length (to advance to next bytecode)
-  static address    deopt_entry   (TosState state, int length) { ShouldNotReachHere(); return NULL; }
-  static address    return_entry  (TosState state, int length) { ShouldNotReachHere(); return NULL; }
+  static address deopt_entry(TosState state, int length) { ShouldNotReachHere(); return NULL; }
+  static address return_entry(TosState state, int length, Bytecodes::Code code) { ShouldNotReachHere(); return NULL; }
 
   static address    rethrow_exception_entry()                   { return _rethrow_exception_entry; }