Reformat comments to fix 80 columns.
authorJeff Cohen <jeffc@jolt-lang.org>
Sat, 5 Mar 2005 22:45:40 +0000 (22:45 +0000)
committerJeff Cohen <jeffc@jolt-lang.org>
Sat, 5 Mar 2005 22:45:40 +0000 (22:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20467 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LoopStrengthReduce.cpp

index b2b0064e112112ad7cbe732b8ffe067a548f3f5d..33ac4723a0a39de572874710942504bfb603b069 100644 (file)
@@ -203,17 +203,18 @@ void LoopStrengthReduce::strengthReduceGEP(GetElementPtrInst *GEPI, Loop *L,
                                     Preheader->getTerminator());
     }
 
-    // The next step of the strength reduction is to create a PHI that will choose
-    // between the initial GEP we created and inserted into the preheader, and 
-    // the incremented GEP that we will create below and insert into the loop body
+    // The next step of the strength reduction is to create a PHI that will
+    // choose between the initial GEP we created and inserted into the
+    // preheader, and the incremented GEP that we will create below and insert
+    // into the loop body.
     NewPHI = new PHINode(PreGEP->getType(), 
                                   GEPI->getName()+".str", InsertBefore);
     NewPHI->addIncoming(PreGEP, Preheader);
     
-    // Now, create the GEP instruction to increment by one the value selected by
-    // the PHI instruction we just created above, and add it as the second
-    // incoming Value/BasicBlock pair to the PHINode.  It is inserted before the
-    // increment of the canonical induction variable.
+    // Now, create the GEP instruction to increment by one the value selected
+    // by the PHI instruction we just created above, and add it as the second
+    // incoming Value/BasicBlock pair to the PHINode.  It is inserted before
+    // the increment of the canonical induction variable.
     Instruction *IncrInst = 
       const_cast<Instruction*>(L->getCanonicalInductionVariableIncrement());
     GetElementPtrInst *StrGEP = new GetElementPtrInst(NewPHI, inc_op_vector,