src/hotspot/cpu/x86/interp_masm_x86.cpp
changeset 51178 416a76fe8067
parent 50577 bf7e2684cd0a
child 51756 4bd35a5ec694
--- a/src/hotspot/cpu/x86/interp_masm_x86.cpp	Wed Jul 18 00:23:06 2018 -0700
+++ b/src/hotspot/cpu/x86/interp_masm_x86.cpp	Fri Jul 20 11:55:05 2018 -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() {