Skip to content

Commit 1a85093

Browse files
committed
Fix formatting
1 parent 4f388a4 commit 1a85093

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3598,8 +3598,7 @@ Instruction *InstCombinerImpl::foldSelectToCmp(SelectInst &SI) {
35983598
}
35993599
}
36003600

3601-
Intrinsic::ID IID =
3602-
IsSigned ? Intrinsic::scmp : Intrinsic::ucmp;
3601+
Intrinsic::ID IID = IsSigned ? Intrinsic::scmp : Intrinsic::ucmp;
36033602
if (Replace)
36043603
return replaceInstUsesWith(
36053604
SI, Builder.CreateIntrinsic(SI.getType(), IID, {LHS, RHS}));

0 commit comments

Comments
 (0)