aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms
diff options
context:
space:
mode:
authorDan Gohman <djg@cray.com>2007-10-29 19:32:39 +0000
committerDan Gohman <djg@cray.com>2007-10-29 19:32:39 +0000
commit3e749e989f8989fc40935b6e48976199d87e8972 (patch)
treec7e8c1a20f272b05bc6dbf06b35802cf3579bef4 /lib/Transforms
parent5c740ec8e4b8339c4e2c4931792764e7e6edc878 (diff)
downloadexternal_llvm-3e749e989f8989fc40935b6e48976199d87e8972.zip
external_llvm-3e749e989f8989fc40935b6e48976199d87e8972.tar.gz
external_llvm-3e749e989f8989fc40935b6e48976199d87e8972.tar.bz2
Update a comment to reflect the current code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43463 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Scalar/LoopStrengthReduce.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp
index a8267d8..01ba7b3 100644
--- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp
+++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp
@@ -51,8 +51,8 @@ namespace {
/// IVStrideUse - Keep track of one use of a strided induction variable, where
/// the stride is stored externally. The Offset member keeps track of the
- /// offset from the IV, User is the actual user of the operand, and 'Operand'
- /// is the operand # of the User that is the use.
+ /// offset from the IV, User is the actual user of the operand, and
+ /// 'OperandValToReplace' is the operand of the User that is the use.
struct VISIBILITY_HIDDEN IVStrideUse {
SCEVHandle Offset;
Instruction *User;