diff options
author | Gabor Greif <ggreif@gmail.com> | 2009-02-21 01:09:07 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2009-02-21 01:09:07 +0000 |
commit | 67a2743b6ba03c473f89577d04c8141150b1f1c2 (patch) | |
tree | 3e86e72876e702526b6cdf213ea2013390bfcc11 /include/llvm/User.h | |
parent | 8aa374b6290210ad86499e129e67dea066d94433 (diff) | |
download | external_llvm-67a2743b6ba03c473f89577d04c8141150b1f1c2.zip external_llvm-67a2743b6ba03c473f89577d04c8141150b1f1c2.tar.gz external_llvm-67a2743b6ba03c473f89577d04c8141150b1f1c2.tar.bz2 |
fix and clean up a comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65212 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/User.h')
-rw-r--r-- | include/llvm/User.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/llvm/User.h b/include/llvm/User.h index e25d19b..bb1a862 100644 --- a/include/llvm/User.h +++ b/include/llvm/User.h @@ -50,12 +50,11 @@ class User : public Value { 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. |