[llvm-commits] [llvm] r43463 - /llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp

Dan Gohman djg at cray.com
Mon Oct 29 12:32:39 PDT 2007


Author: djg
Date: Mon Oct 29 14:32:39 2007
New Revision: 43463

URL: http://llvm.org/viewvc/llvm-project?rev=43463&view=rev
Log:
Update a comment to reflect the current code.

Modified:
    llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp?rev=43463&r1=43462&r2=43463&view=diff

==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp Mon Oct 29 14:32:39 2007
@@ -51,8 +51,8 @@
 
   /// 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;





More information about the llvm-commits mailing list