Skip to content

Commit 20510d7

Browse files
committed
format
1 parent 3fa90d4 commit 20510d7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Transforms/Vectorize/LoopVectorize.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4382,7 +4382,8 @@ VectorizationFactor LoopVectorizationPlanner::selectEpilogueVectorizationFactor(
43824382
SE.getURemExpr(TC, SE.getElementCount(TCType, MainLoopVF * IC));
43834383
else if (ScalableTC) {
43844384
const SCEV *EstimatedTC = SE.getMulExpr(
4385-
KnownMinTC, SE.getConstant(TCType, CM.getVScaleForTuning().value_or(1)));
4385+
KnownMinTC,
4386+
SE.getConstant(TCType, CM.getVScaleForTuning().value_or(1)));
43864387
RemainingIterations = SE.getURemExpr(
43874388
EstimatedTC, SE.getElementCount(TCType, MainLoopVF * IC));
43884389
} else

0 commit comments

Comments
 (0)