[llvm-commits] [llvm] r65212 - /llvm/trunk/include/llvm/User.h
Gabor Greif
ggreif at gmail.com
Fri Feb 20 17:09:07 PST 2009
Author: ggreif
Date: Fri Feb 20 19:09:07 2009
New Revision: 65212
URL: http://llvm.org/viewvc/llvm-project?rev=65212&view=rev
Log:
fix and clean up a comment
Modified:
llvm/trunk/include/llvm/User.h
Modified: llvm/trunk/include/llvm/User.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/User.h?rev=65212&r1=65211&r2=65212&view=diff
==============================================================================
--- llvm/trunk/include/llvm/User.h (original)
+++ llvm/trunk/include/llvm/User.h Fri Feb 20 19:09:07 2009
@@ -50,12 +50,11 @@
template <unsigned>
friend struct HungoffOperandTraits;
protected:
- /// OperandList - This is a pointer to the array of Users for this operand.
+ /// OperandList - This is a pointer to the array of Uses for this User.
/// For nodes of fixed arity (e.g. a binary operator) this array will live
- /// prefixed to the derived class. For nodes of resizable variable arity
- /// (e.g. PHINodes, SwitchInst etc.), this memory will be dynamically
- /// allocated and should be destroyed by the classes'
- /// virtual dtor.
+ /// prefixed to some derived class instance. For nodes of resizable variable
+ /// arity (e.g. PHINodes, SwitchInst etc.), this memory will be dynamically
+ /// allocated and should be destroyed by the classes' virtual dtor.
Use *OperandList;
/// NumOperands - The number of values used by this User.
More information about the llvm-commits
mailing list