diff options
-rw-r--r-- | include/llvm/Type.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Type.def b/include/llvm/Type.def index 99a9569ce8..c56da22b76 100644 --- a/include/llvm/Type.def +++ b/include/llvm/Type.def @@ -25,7 +25,7 @@ // Type Name: This is the symbolic name of the type, without the trailing Ty. // Type Size: This is the size or precision of the type. // -HANDLE_PRIM_TYPE(Void , 1) +HANDLE_PRIM_TYPE(Void , 0) HANDLE_PRIM_TYPE(Bool , 1) HANDLE_PRIM_TYPE(SByte , 1) HANDLE_PRIM_TYPE(UByte , 1) @@ -38,7 +38,7 @@ HANDLE_PRIM_TYPE(ULong , 8) HANDLE_PRIM_TYPE(Float , 4) HANDLE_PRIM_TYPE(Double, 8) HANDLE_PRIM_TYPE(Type , 0) -HANDLE_PRIM_TYPE(Label , 8) +HANDLE_PRIM_TYPE(Label , 0) // HANDLE_DERV_TYPE - Parameterized #define that takes the following fields to |