[llvm-commits] CVS: llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp

Chris Lattner lattner at cs.uiuc.edu
Thu Mar 23 23:14:47 PST 2006



Changes in directory llvm/lib/Transforms/Scalar:

LoopStrengthReduce.cpp updated: 1.81 -> 1.82
---
Log message:

Fix spello


---
Diffs of the changes:  (+2 -2)

 LoopStrengthReduce.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
diff -u llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp:1.81 llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp:1.82
--- llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp:1.81	Wed Mar 22 11:27:24 2006
+++ llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp	Fri Mar 24 01:14:34 2006
@@ -1140,7 +1140,7 @@
 
   // Finally, get the terminating condition for the loop if possible.  If we
   // can, we want to change it to use a post-incremented version of its
-  // induction variable, to allow coallescing the live ranges for the IV into
+  // induction variable, to allow coalescing the live ranges for the IV into
   // one register value.
   PHINode *SomePHI = cast<PHINode>(L->getHeader()->begin());
   BasicBlock  *Preheader = L->getLoopPreheader();
@@ -1199,7 +1199,7 @@
   }
 
   // If we get to here, we know that we can transform the setcc instruction to
-  // use the post-incremented version of the IV, allowing us to coallesce the
+  // use the post-incremented version of the IV, allowing us to coalesce the
   // live ranges for the IV correctly.
   CondUse->Offset = SCEV::getMinusSCEV(CondUse->Offset, *CondStride);
   CondUse->isUseOfPostIncrementedValue = true;






More information about the llvm-commits mailing list