--- old/src/cpu/x86/vm/interp_masm_x86_32.cpp Thu Jul 14 13:07:06 2011 +++ new/src/cpu/x86/vm/interp_masm_x86_32.cpp Thu Jul 14 13:07:06 2011 @@ -403,9 +403,9 @@ // interp_only_mode if these events CAN be enabled. get_thread(temp); // interp_only is an int, on little endian it is sufficient to test the byte only - // Is a cmpl faster (ce + // Is a cmpl faster? cmpb(Address(temp, JavaThread::interp_only_mode_offset()), 0); - jcc(Assembler::zero, run_compiled_code); + jccb(Assembler::zero, run_compiled_code); jmp(Address(method, methodOopDesc::interpreter_entry_offset())); bind(run_compiled_code); }