We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fa90d4 commit 20510d7Copy full SHA for 20510d7
llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -4382,7 +4382,8 @@ VectorizationFactor LoopVectorizationPlanner::selectEpilogueVectorizationFactor(
4382
SE.getURemExpr(TC, SE.getElementCount(TCType, MainLoopVF * IC));
4383
else if (ScalableTC) {
4384
const SCEV *EstimatedTC = SE.getMulExpr(
4385
- KnownMinTC, SE.getConstant(TCType, CM.getVScaleForTuning().value_or(1)));
+ KnownMinTC,
4386
+ SE.getConstant(TCType, CM.getVScaleForTuning().value_or(1)));
4387
RemainingIterations = SE.getURemExpr(
4388
EstimatedTC, SE.getElementCount(TCType, MainLoopVF * IC));
4389
} else
0 commit comments