Skip to content

Commit 171124b

Browse files
committed
format
1 parent 7c3c2ba commit 171124b

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
@@ -4376,7 +4376,8 @@ VectorizationFactor LoopVectorizationPlanner::selectEpilogueVectorizationFactor(
43764376
// 'vscale'.
43774377
// If TC is multiple of vscale, try to get estimated value:
43784378
if (match(TC, m_scev_Mul(m_SCEV(), m_SCEVVScale()))) {
4379-
if (std::optional<ElementCount> BestKnownTC = getSmallBestKnownTC(PSE, OrigLoop)) {
4379+
if (std::optional<ElementCount> BestKnownTC =
4380+
getSmallBestKnownTC(PSE, OrigLoop)) {
43804381
unsigned EstimatedRuntimeTC =
43814382
estimateElementCount(*BestKnownTC, CM.getVScaleForTuning());
43824383
TC = SE.getConstant(TCType, EstimatedRuntimeTC);

0 commit comments

Comments
 (0)