8140584: nmethod::oops_do_marking_epilogue always runs verification code

Reviewed-by: tschatzl, kvn
This commit is contained in:
Stefan Karlsson 2015-10-27 12:25:08 +01:00
parent 2e45726df1
commit eddb003fc7
6 changed files with 15 additions and 15 deletions

View file

@ -60,7 +60,7 @@ void NativeInstruction::verify_data64_sethi(address instaddr, intptr_t x) {
masm.patchable_sethi(x, destreg);
int len = buffer - masm.pc();
for (int i = 0; i < len; i++) {
assert(instaddr[i] == buffer[i], "instructions must match");
guarantee(instaddr[i] == buffer[i], "instructions must match");
}
}