[llvm-commits] CVS: llvm/include/llvm/Instruction.def
Chris Lattner
lattner at cs.uiuc.edu
Fri Jun 24 11:17:45 PDT 2005
Changes in directory llvm/include/llvm:
Instruction.def updated: 1.15 -> 1.16
---
Log message:
improve comments
---
Diffs of the changes: (+3 -3)
Instruction.def | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/include/llvm/Instruction.def
diff -u llvm/include/llvm/Instruction.def:1.15 llvm/include/llvm/Instruction.def:1.16
--- llvm/include/llvm/Instruction.def:1.15 Sat Jun 18 13:31:30 2005
+++ llvm/include/llvm/Instruction.def Fri Jun 24 13:17:33 2005
@@ -128,13 +128,13 @@
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
More information about the llvm-commits
mailing list