[llvm-commits] CVS: llvm/include/llvm/Bitcode/LLVMBitCodes.h
Chris Lattner
sabre at nondot.org
Mon Apr 30 19:12:23 PDT 2007
Changes in directory llvm/include/llvm/Bitcode:
LLVMBitCodes.h updated: 1.9 -> 1.10
---
Log message:
add missing opcode.
---
Diffs of the changes: (+10 -9)
LLVMBitCodes.h | 19 ++++++++++---------
1 files changed, 10 insertions(+), 9 deletions(-)
Index: llvm/include/llvm/Bitcode/LLVMBitCodes.h
diff -u llvm/include/llvm/Bitcode/LLVMBitCodes.h:1.9 llvm/include/llvm/Bitcode/LLVMBitCodes.h:1.10
--- llvm/include/llvm/Bitcode/LLVMBitCodes.h:1.9 Sun Apr 29 16:49:05 2007
+++ llvm/include/llvm/Bitcode/LLVMBitCodes.h Mon Apr 30 21:12:05 2007
@@ -164,20 +164,21 @@
FUNC_CODE_INST_SHUFFLEVEC = 8, // SHUFFLEVEC: [ty, opval, opval, opval]
FUNC_CODE_INST_CMP = 9, // CMP: [opty, opval, opval, pred]
- FUNC_CODE_INST_RET = 10, // RET: [opval<optional>]
+ FUNC_CODE_INST_RET = 10, // RET: [opty,opval<optional>]
FUNC_CODE_INST_BR = 11, // BR: [opval, bb#, bb#] or [bb#]
FUNC_CODE_INST_SWITCH = 12, // SWITCH: [opty, opval, n, n x ops]
- FUNC_CODE_INST_INVOKE = 13, // INVOKE:
+ FUNC_CODE_INST_INVOKE = 13, // INVOKE: [fnty, op0,op1,op2, ...]
FUNC_CODE_INST_UNWIND = 14, // UNWIND
FUNC_CODE_INST_UNREACHABLE = 15, // UNREACHABLE
- FUNC_CODE_INST_MALLOC = 16, // MALLOC: ..
- FUNC_CODE_INST_FREE = 17, // FREE: ..
- FUNC_CODE_INST_ALLOCA = 18, // ALLOCA: ..
- FUNC_CODE_INST_LOAD = 19, // LOAD: ..
- FUNC_CODE_INST_STORE = 20, // STORE: ..
- FUNC_CODE_INST_CALL = 21, // CALL: ..
- FUNC_CODE_INST_VAARG = 22 // VAARG: ..
+ FUNC_CODE_INST_PHI = 16, // PHI: [ty, #ops, val0,bb0, ...]
+ FUNC_CODE_INST_MALLOC = 17, // MALLOC: [instty, op, align]
+ FUNC_CODE_INST_FREE = 18, // FREE: [opty, op]
+ FUNC_CODE_INST_ALLOCA = 19, // ALLOCA: [instty, op, align]
+ FUNC_CODE_INST_LOAD = 20, // LOAD: [opty, op, align, vol]
+ FUNC_CODE_INST_STORE = 21, // STORE: [ptrty,val,ptr, align, vol]
+ FUNC_CODE_INST_CALL = 22, // CALL: [fnty, fnid, arg0, arg1...]
+ FUNC_CODE_INST_VAARG = 23 // VAARG: [valistty, valist, instty]
};
} // End bitc namespace
} // End llvm namespace
More information about the llvm-commits
mailing list