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 7c3c2ba commit 171124bCopy full SHA for 171124b
llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -4376,7 +4376,8 @@ VectorizationFactor LoopVectorizationPlanner::selectEpilogueVectorizationFactor(
4376
// 'vscale'.
4377
// If TC is multiple of vscale, try to get estimated value:
4378
if (match(TC, m_scev_Mul(m_SCEV(), m_SCEVVScale()))) {
4379
- if (std::optional<ElementCount> BestKnownTC = getSmallBestKnownTC(PSE, OrigLoop)) {
+ if (std::optional<ElementCount> BestKnownTC =
4380
+ getSmallBestKnownTC(PSE, OrigLoop)) {
4381
unsigned EstimatedRuntimeTC =
4382
estimateElementCount(*BestKnownTC, CM.getVScaleForTuning());
4383
TC = SE.getConstant(TCType, EstimatedRuntimeTC);
0 commit comments