hotspot/src/share/vm/runtime/relocator.cpp
changeset 38658 34f9c45625d8
parent 33593 60764a78fa5c
child 46630 75aa3e39d02c
--- a/hotspot/src/share/vm/runtime/relocator.cpp	Mon May 09 23:49:22 2016 -0700
+++ b/hotspot/src/share/vm/runtime/relocator.cpp	Tue May 03 12:23:06 2016 +0200
@@ -612,8 +612,8 @@
   // In case we have shrunken a tableswitch/lookupswitch statement, we store the last
   // bytes that get overwritten. We have to copy the bytes after the change_jumps method
   // has been called, since it is likely to update last offset in a tableswitch/lookupswitch
-  if (delta < 0) {
-    assert(delta>=-3, "we cannot overwrite more than 3 bytes");
+  assert(delta >= -3, "We cannot overwrite more than 3 bytes.");
+  if (delta < 0 && delta >= -3) {
     memcpy(_overwrite, addr_at(bci + ilen + delta), -delta);
   }