diff options
author | Dan Gohman <gohman@apple.com> | 2007-10-29 19:26:14 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-10-29 19:26:14 +0000 |
commit | b66cf43ef41e2e6de7cbe13c7d77de3f8efa0588 (patch) | |
tree | 0141a17573929da9cff45664a856388b38649a42 /lib/Transforms/Scalar/LoopStrengthReduce.cpp | |
parent | aa34331e7832dc1139231626516e9587eeecb0ce (diff) |
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43461 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/LoopStrengthReduce.cpp')
-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 e384508139..5b1b448875 100644 --- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -1690,7 +1690,7 @@ bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager &LPM) { // Note: this processes each stride/type pair individually. All users passed // into StrengthReduceStridedIVUsers have the same type AND stride. Also, - // node that we iterate over IVUsesByStride indirectly by using StrideOrder. + // note that we iterate over IVUsesByStride indirectly by using StrideOrder. // This extra layer of indirection makes the ordering of strides deterministic // - not dependent on map order. for (unsigned Stride = 0, e = StrideOrder.size(); Stride != e; ++Stride) { |