Fix spello
authorChris Lattner <sabre@nondot.org>
Fri, 24 Mar 2006 07:14:34 +0000 (07:14 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 24 Mar 2006 07:14:34 +0000 (07:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27052 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LoopStrengthReduce.cpp

index b7c1ac58eae48d26482ad47d8c7f6922c270a7ad..ea416dd43ea8f60b9f824fe649ad530a1eb93bcd 100644 (file)
@@ -1140,7 +1140,7 @@ void LoopStrengthReduce::OptimizeIndvars(Loop *L) {
 
   // 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 @@ void LoopStrengthReduce::OptimizeIndvars(Loop *L) {
   }
 
   // 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;