diff options
author | Devang Patel <dpatel@apple.com> | 2008-02-23 00:35:18 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-02-23 00:35:18 +0000 |
commit | 57ef4f46c182cdbe014d469892090ff50c739cf9 (patch) | |
tree | f23b0db1085ced0c14bbdf11adaec0bea64a20d2 /include/llvm/User.h | |
parent | 313d4b809326f3e04814f94e5b8ae05649d8e0f6 (diff) | |
download | external_llvm-57ef4f46c182cdbe014d469892090ff50c739cf9.zip external_llvm-57ef4f46c182cdbe014d469892090ff50c739cf9.tar.gz external_llvm-57ef4f46c182cdbe014d469892090ff50c739cf9.tar.bz2 |
To support multiple return values, now ret instruction supports multiple operands instead of one aggregate operand.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47508 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/User.h')
-rw-r--r-- | include/llvm/User.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/User.h b/include/llvm/User.h index 6592df9..0f1dcfe 100644 --- a/include/llvm/User.h +++ b/include/llvm/User.h @@ -29,8 +29,9 @@ protected: /// OperandList - This is a pointer to the array of Users for this operand. /// For nodes of fixed arity (e.g. a binary operator) this array will live /// embedded into the derived class. For nodes of variable arity - /// (e.g. ConstantArrays, CallInst, PHINodes, etc), this memory will be - /// dynamically allocated and should be destroyed by the classes virtual dtor. + /// (e.g. ConstantArrays, CallInst, PHINodes, ReturnInst 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. |