hotspot/src/cpu/sparc/vm/nativeInst_sparc.cpp
changeset 35086 bbf32241d851
parent 33813 4f376e851453
child 35135 dd2ce9021031
--- a/hotspot/src/cpu/sparc/vm/nativeInst_sparc.cpp	Fri Dec 04 16:38:04 2015 +0100
+++ b/hotspot/src/cpu/sparc/vm/nativeInst_sparc.cpp	Fri Dec 04 23:46:19 2015 +0300
@@ -131,8 +131,9 @@
 void NativeCall::verify() {
   NativeInstruction::verify();
   // make sure code pattern is actually a call instruction
-  if (!is_op(long_at(0), Assembler::call_op)) {
-    fatal("not a call");
+  int x = long_at(0);
+  if (!is_op(x, Assembler::call_op)) {
+    fatal("not a call: 0x%x @ " INTPTR_FORMAT, x, p2i(instruction_address()));
   }
 }