[VPlan] Fix comment formatting from 43842b887e.
authorFlorian Hahn <flo@fhahn.com>
Thu, 28 Apr 2022 15:31:48 +0000 (16:31 +0100)
committerFlorian Hahn <flo@fhahn.com>
Thu, 28 Apr 2022 15:31:48 +0000 (16:31 +0100)
llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp

index 2c3b0ac..e8f2e2f 100644 (file)
@@ -429,7 +429,8 @@ void VPlanTransforms::optimizeInductions(VPlan &Plan, ScalarEvolution &SE) {
         IV->getStartValue(), Step, TruncI ? TruncI->getType() : nullptr);
     HeaderVPBB->insert(Steps, HeaderVPBB->getFirstNonPhi());
 
-    // Update scalar users of IV to use Step instead. Use SetVector to ensure the list of users doesn't contain duplicates.
+    // Update scalar users of IV to use Step instead. Use SetVector to ensure
+    // the list of users doesn't contain duplicates.
     SetVector<VPUser *> Users(IV->user_begin(), IV->user_end());
     for (VPUser *U : Users) {
       VPRecipeBase *R = cast<VPRecipeBase>(U);