Skip to content

Commit e7671bc

Browse files
committed
[LV] Fix indent for loop in adjustRecipesForReductions (NFC).
1 parent aa440aa commit e7671bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Transforms/Vectorize/LoopVectorize.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9046,9 +9046,9 @@ void LoopVectorizationPlanner::adjustRecipesForReductions(
90469046
PreviousLink = RedRecipe;
90479047
}
90489048
}
9049-
Builder.setInsertPoint(&*LatchVPBB->begin());
9050-
for (VPRecipeBase &R :
9051-
Plan->getVectorLoopRegion()->getEntryBasicBlock()->phis()) {
9049+
Builder.setInsertPoint(&*LatchVPBB->begin());
9050+
for (VPRecipeBase &R :
9051+
Plan->getVectorLoopRegion()->getEntryBasicBlock()->phis()) {
90529052
VPReductionPHIRecipe *PhiR = dyn_cast<VPReductionPHIRecipe>(&R);
90539053
if (!PhiR)
90549054
continue;

0 commit comments

Comments
 (0)