diff options
author | Chris Lattner <sabre@nondot.org> | 2005-06-24 18:17:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-06-24 18:17:33 +0000 |
commit | b7eb682293bd53607f96fd5f95cbeca8edfe0122 (patch) | |
tree | fbd5feda445b78c0656b1fb64375400ff317c1d9 | |
parent | 548021f411120a9621159539a45524f556ba9567 (diff) |
improve comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22280 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Instruction.def | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Instruction.def b/include/llvm/Instruction.def index 08806b46bd..48a458ceb8 100644 --- a/include/llvm/Instruction.def +++ b/include/llvm/Instruction.def @@ -128,13 +128,13 @@ HANDLE_OTHER_INST(29, Call , CallInst ) // Call a function HANDLE_OTHER_INST(30, Shl , ShiftInst ) // Shift operations HANDLE_OTHER_INST(31, Shr , ShiftInst ) - //HANDLE_OTHER_INST(32, VANext , VANextInst ) // vanext instruction - //HANDLE_OTHER_INST(33, VAArg , VAArgInst ) // vaarg instruction +// 32 -> Empty slot used to be used for vanext in llvm 1.5 and before. +// 33 -> Empty slot used to be used for vaarg in llvm 1.5 and before. HANDLE_OTHER_INST(34, Select , SelectInst ) // select instruction HANDLE_OTHER_INST(35, UserOp1, Instruction) // May be used internally in a pass HANDLE_OTHER_INST(36, UserOp2, Instruction) -HANDLE_OTHER_INST(37, VAArg , VAArgInst ) // vaarg instruction +HANDLE_OTHER_INST(37, VAArg , VAArgInst ) // vaarg instruction LAST_OTHER_INST(37) #undef FIRST_TERM_INST |