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 | f365f5f0c136cc2b4d20b5e08bca91add0d16f84 (patch) | |
| tree | 8a0c8ba1822f4929cbd8224e9386b792d0124269 /llvm | |
| parent | 5821a6a17a778385379d70154790a284a34dd72d (diff) | |
| download | bcm5719-llvm-f365f5f0c136cc2b4d20b5e08bca91add0d16f84.tar.gz bcm5719-llvm-f365f5f0c136cc2b4d20b5e08bca91add0d16f84.zip  | |
Fix spello
llvm-svn: 27052
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp index b7c1ac58eae..ea416dd43ea 100644 --- a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/llvm/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;  | 

