[llvm-commits] CVS: llvm/include/llvm/Bitcode/LLVMBitCodes.h
Chris Lattner
sabre at nondot.org
Thu May 3 20:02:07 PDT 2007
Changes in directory llvm/include/llvm/Bitcode:
LLVMBitCodes.h updated: 1.13 -> 1.14
---
Log message:
remove unused code
---
Diffs of the changes: (+11 -12)
LLVMBitCodes.h | 23 +++++++++++------------
1 files changed, 11 insertions(+), 12 deletions(-)
Index: llvm/include/llvm/Bitcode/LLVMBitCodes.h
diff -u llvm/include/llvm/Bitcode/LLVMBitCodes.h:1.13 llvm/include/llvm/Bitcode/LLVMBitCodes.h:1.14
--- llvm/include/llvm/Bitcode/LLVMBitCodes.h:1.13 Thu May 3 22:00:00 2007
+++ llvm/include/llvm/Bitcode/LLVMBitCodes.h Thu May 3 22:01:46 2007
@@ -69,20 +69,19 @@
/// TYPE blocks have codes for each type primitive they use.
enum TypeCodes {
TYPE_CODE_NUMENTRY = 1, // TYPE_CODE_NUMENTRY: [numentries]
- TYPE_CODE_META = 2, // TYPE_CODE_META: [metacode]... - Future use
// Type Codes
- TYPE_CODE_VOID = 3, // VOID
- TYPE_CODE_FLOAT = 4, // FLOAT
- TYPE_CODE_DOUBLE = 5, // DOUBLE
- TYPE_CODE_LABEL = 6, // LABEL
- TYPE_CODE_OPAQUE = 7, // OPAQUE
- TYPE_CODE_INTEGER = 8, // INTEGER: [width]
- TYPE_CODE_POINTER = 9, // POINTER: [pointee type]
- TYPE_CODE_FUNCTION = 10, // FUNCTION: [vararg, retty, #pararms, paramty N]
- TYPE_CODE_STRUCT = 11, // STRUCT: [ispacked, #elts, eltty x N]
- TYPE_CODE_ARRAY = 12, // ARRAY: [numelts, eltty]
- TYPE_CODE_VECTOR = 13 // VECTOR: [numelts, eltty]
+ TYPE_CODE_VOID = 2, // VOID
+ TYPE_CODE_FLOAT = 3, // FLOAT
+ TYPE_CODE_DOUBLE = 4, // DOUBLE
+ TYPE_CODE_LABEL = 5, // LABEL
+ TYPE_CODE_OPAQUE = 6, // OPAQUE
+ TYPE_CODE_INTEGER = 7, // INTEGER: [width]
+ TYPE_CODE_POINTER = 8, // POINTER: [pointee type]
+ TYPE_CODE_FUNCTION = 9, // FUNCTION: [vararg, retty, #pararms, paramty N]
+ TYPE_CODE_STRUCT = 10, // STRUCT: [ispacked, #elts, eltty x N]
+ TYPE_CODE_ARRAY = 11, // ARRAY: [numelts, eltty]
+ TYPE_CODE_VECTOR = 12 // VECTOR: [numelts, eltty]
// Any other type code is assumed to be an unknown type.
};
More information about the llvm-commits
mailing list