aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/LoopStrengthReduce.cpp
diff options
context:
space:
mode:
authorDan Gohman <djg@cray.com>2007-10-29 19:26:14 +0000
committerDan Gohman <djg@cray.com>2007-10-29 19:26:14 +0000
commit04c58c1fd15a5cb723c3866fd8dd99511ab64ada (patch)
tree0141a17573929da9cff45664a856388b38649a42 /lib/Transforms/Scalar/LoopStrengthReduce.cpp
parent55113947852c62178bb2ce3e1734a135a18c16e9 (diff)
downloadexternal_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.cpp2
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) {