Skip to content

Commit 75a9959

Browse files
committed
Revert continue move
1 parent 87b79d7 commit 75a9959

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -886,16 +886,16 @@ bool SIShrinkInstructions::runOnMachineFunction(MachineFunction &MF) {
886886
if (isKImmOperand(Src)) {
887887
MI.setDesc(TII->get(AMDGPU::S_MOVK_I32));
888888
Src.setImm(SignExtend64(Src.getImm(), 32));
889-
continue;
890889
}
891890

892891
if ((ModOpc = canModifyToInlineImmOp32(TII, Src, ModImm,
893892
/*Scalar=*/true))) {
894893
MI.setDesc(TII->get(ModOpc));
895894
Src.setImm(static_cast<int64_t>(ModImm));
896-
continue;
897895
}
898896
}
897+
898+
continue;
899899
}
900900

901901
// Shrink scalar logic operations.

0 commit comments

Comments
 (0)