Whitespace

This commit is contained in:
Andrew Haley 2026-07-14 12:27:47 +01:00
parent 7bb4b0d6e3
commit 99095df18b

View File

@ -2601,17 +2601,13 @@ void LIR_Assembler::increment_profile_ctr(LIR_Opr step, LIR_Opr dest_opr, LIR_Op
} else {
jint inc = step->as_constant_ptr()->as_jint_bits();
inc *= ProfileCaptureRatio;
switch (dest_opr->type()) {
case T_INT: {
__ incrementw(counter_address, inc, dest);
break;
}
case T_LONG: {
__ increment(counter_address, inc, dest);
break;
}
default:
ShouldNotReachHere();