mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 02:33:33 +00:00
fix and clean up a comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65212 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8aa374b629
commit
67a2743b6b
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user