--- old/src/cpu/sparc/vm/nativeInst_sparc.cpp 2015-11-23 21:11:13.000000000 +0300 +++ new/src/cpu/sparc/vm/nativeInst_sparc.cpp 2015-11-23 21:11:13.000000000 +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())); } }