summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-05-04 03:01:46 +0000
committerChris Lattner <sabre@nondot.org>2007-05-04 03:01:46 +0000
commit302dc74536cf7096f708c26c92f7cc461e302304 (patch)
tree49f9871716204f0fd89305f252ac6e05a8e5bd5b
parent0b7c5121f72546f86e6a00f0ff8d449a1f2c9259 (diff)
downloadbcm5719-llvm-302dc74536cf7096f708c26c92f7cc461e302304.tar.gz
bcm5719-llvm-302dc74536cf7096f708c26c92f7cc461e302304.zip
remove unused code
llvm-svn: 36727
-rw-r--r--llvm/include/llvm/Bitcode/LLVMBitCodes.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/llvm/include/llvm/Bitcode/LLVMBitCodes.h b/llvm/include/llvm/Bitcode/LLVMBitCodes.h
index 5316e4e7e36..40a9a2dfdc0 100644
--- a/llvm/include/llvm/Bitcode/LLVMBitCodes.h
+++ b/llvm/include/llvm/Bitcode/LLVMBitCodes.h
@@ -69,20 +69,19 @@ namespace bitc {
/// 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.
};
OpenPOWER on IntegriCloud