diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-24 07:14:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-24 07:14:34 +0000 |
commit | 98d9811db263ee040d9a6a69ef9e1c4fdc8c219d (patch) | |
tree | d1d795fc04eadcca359c17c27f438f82c6d629b0 /lib/Transforms/Scalar/LoopStrengthReduce.cpp | |
parent | 0f862e50aebccf893afd62bb901456d721b7f054 (diff) |
Fix spello
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27052 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/LoopStrengthReduce.cpp')
-rw-r--r-- | lib/Transforms/Scalar/LoopStrengthReduce.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp index b7c1ac58ea..ea416dd43e 100644 --- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -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; |