From 99095df18b64acfdb68e704bf1bb7e1f67637bd8 Mon Sep 17 00:00:00 2001 From: Andrew Haley Date: Tue, 14 Jul 2026 12:27:47 +0100 Subject: [PATCH] Whitespace --- src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp b/src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp index 2a8bd1edcb4..9eadcc9dcc4 100644 --- a/src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp +++ b/src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp @@ -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();