8013041: guarantee(this->is8bit(imm8)) failed: Short forward jump exceeds 8-bit offset

Change jmpb() to jmp().

Reviewed-by: coleenp, rdurbin, dcubed
This commit is contained in:
Jiangli Zhou 2013-04-24 18:20:04 -04:00
parent 95ce391b51
commit 670aea401a
2 changed files with 2 additions and 2 deletions

View File

@ -360,7 +360,7 @@ void InterpreterGenerator::generate_counter_incr(Label* overflow, Label* profile
const Address mdo_invocation_counter(rax, in_bytes(MethodData::invocation_counter_offset()) +
in_bytes(InvocationCounter::counter_offset()));
__ increment_mask_and_jump(mdo_invocation_counter, increment, mask, rcx, false, Assembler::zero, overflow);
__ jmpb(done);
__ jmp(done);
}
__ bind(no_mdo);
// Increment counter in MethodCounters

View File

@ -315,7 +315,7 @@ void InterpreterGenerator::generate_counter_incr(
const Address mdo_invocation_counter(rax, in_bytes(MethodData::invocation_counter_offset()) +
in_bytes(InvocationCounter::counter_offset()));
__ increment_mask_and_jump(mdo_invocation_counter, increment, mask, rcx, false, Assembler::zero, overflow);
__ jmpb(done);
__ jmp(done);
}
__ bind(no_mdo);
// Increment counter in MethodCounters