hotspot/src/share/vm/oops/method.cpp
changeset 21198 dd647e8d1d72
parent 20391 7b146c5ebb18
child 23491 f690330b10b9
child 23515 f4872ef5df09
--- a/hotspot/src/share/vm/oops/method.cpp	Wed Oct 23 19:22:28 2013 +0000
+++ b/hotspot/src/share/vm/oops/method.cpp	Thu Oct 24 16:23:07 2013 -0700
@@ -1515,7 +1515,10 @@
       return bp->orig_bytecode();
     }
   }
-  ShouldNotReachHere();
+  {
+    ResourceMark rm;
+    fatal(err_msg("no original bytecode found in %s at bci %d", name_and_sig_as_C_string(), bci));
+  }
   return Bytecodes::_shouldnotreachhere;
 }