aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-11-12 10:07:47 +0000
committerChris Lattner <sabre@nondot.org>2005-11-12 10:07:47 +0000
commit665d62efdf717028123965e0c38ed0f067084935 (patch)
tree5a51adcf8fcf9dfb6b133c7ce988f9b66992ee35
parent6dc0b7bea9f229e83d8dd4da799421edc86b1852 (diff)
Shrink the Type class from 32 to 28 bytes on Darwin (which has silly 32-bit
bools). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24326 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Type.h b/include/llvm/Type.h
index dd2fd9b113..d1ca0130d0 100644
--- a/include/llvm/Type.h
+++ b/include/llvm/Type.h
@@ -83,7 +83,7 @@ public:
private:
TypeID ID : 8; // The current base type of this type.
- bool Abstract; // True if type contains an OpaqueType
+ bool Abstract : 1; // True if type contains an OpaqueType
/// RefCount - This counts the number of PATypeHolders that are pointing to
/// this type. When this number falls to zero, if the type is abstract and