--- old/src/hotspot/cpu/x86/interp_masm_x86.cpp 2018-07-20 11:33:56.000000000 -0700 +++ new/src/hotspot/cpu/x86/interp_masm_x86.cpp 2018-07-20 11:33:56.000000000 -0700 @@ -1963,7 +1963,9 @@ incrementl(scratch, increment); movl(counter_addr, scratch); andl(scratch, mask); - jcc(cond, *where); + if (where != NULL) { + jcc(cond, *where); + } } void InterpreterMacroAssembler::notify_method_entry() {