Skip to content

Commit 2883de0

Browse files
committed
[VPlan] Fix comment formatting from 43842b8.
1 parent 43842b8 commit 2883de0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,8 @@ void VPlanTransforms::optimizeInductions(VPlan &Plan, ScalarEvolution &SE) {
429429
IV->getStartValue(), Step, TruncI ? TruncI->getType() : nullptr);
430430
HeaderVPBB->insert(Steps, HeaderVPBB->getFirstNonPhi());
431431

432-
// Update scalar users of IV to use Step instead. Use SetVector to ensure the list of users doesn't contain duplicates.
432+
// Update scalar users of IV to use Step instead. Use SetVector to ensure
433+
// the list of users doesn't contain duplicates.
433434
SetVector<VPUser *> Users(IV->user_begin(), IV->user_end());
434435
for (VPUser *U : Users) {
435436
VPRecipeBase *R = cast<VPRecipeBase>(U);

0 commit comments

Comments
 (0)