diff options
author | Dan Gohman <gohman@apple.com> | 2009-05-05 23:02:38 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-05-05 23:02:38 +0000 |
commit | c0baecf7de61ee003d18008ea82be78fe7c42d68 (patch) | |
tree | d4f00742cf36860e83646597a00765d53dfb2ca1 | |
parent | fd81b49073312d4912546500dda6f019e2e63bd9 (diff) | |
download | external_llvm-c0baecf7de61ee003d18008ea82be78fe7c42d68.zip external_llvm-c0baecf7de61ee003d18008ea82be78fe7c42d68.tar.gz external_llvm-c0baecf7de61ee003d18008ea82be78fe7c42d68.tar.bz2 |
Fix a copy+pasto in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71035 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/LoopStrengthReduce.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp index 94c9d9b..e2cbbc2 100644 --- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -2464,7 +2464,7 @@ bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager &LPM) { // computation of some other indvar to decide when to terminate the loop. OptimizeIndvars(L); - // FIXME: We can widen overlarge IV's here. e.g. if the code has + // FIXME: We can shrink overlarge IV's here. e.g. if the code has // computation in i64 values and the target doesn't support i64, demote // the computation to 32-bit if safe. |