Skip to content

Commit 1d7e6a7

Browse files
committed
Drop extra braces
1 parent 660a5d3 commit 1d7e6a7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19422,13 +19422,12 @@ class HorizontalReduction {
1942219422
case RecurKind::SMax:
1942319423
case RecurKind::SMin:
1942419424
case RecurKind::UMax:
19425-
case RecurKind::UMin: {
19425+
case RecurKind::UMin:
1942619426
if (UseSelect) {
1942719427
CmpInst::Predicate Pred = llvm::getMinMaxReductionPredicate(Kind);
1942819428
Value *Cmp = Builder.CreateICmp(Pred, LHS, RHS, Name);
1942919429
return Builder.CreateSelect(Cmp, LHS, RHS, Name);
1943019430
}
19431-
}
1943219431
[[fallthrough]];
1943319432
case RecurKind::FMax:
1943419433
case RecurKind::FMin:

0 commit comments

Comments
 (0)