diff options
author | Dan Gohman <djg@cray.com> | 2007-10-29 19:26:14 +0000 |
---|---|---|
committer | Dan Gohman <djg@cray.com> | 2007-10-29 19:26:14 +0000 |
commit | 04c58c1fd15a5cb723c3866fd8dd99511ab64ada (patch) | |
tree | 0141a17573929da9cff45664a856388b38649a42 /lib/Transforms/Scalar/LoopStrengthReduce.cpp | |
parent | 55113947852c62178bb2ce3e1734a135a18c16e9 (diff) | |
download | external_llvm-04c58c1fd15a5cb723c3866fd8dd99511ab64ada.zip external_llvm-04c58c1fd15a5cb723c3866fd8dd99511ab64ada.tar.gz external_llvm-04c58c1fd15a5cb723c3866fd8dd99511ab64ada.tar.bz2 |
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 e384508..5b1b4488 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) { |