diff options
author | Chris Lattner <sabre@nondot.org> | 2005-11-12 10:07:47 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-11-12 10:07:47 +0000 |
commit | 810b5012824578cd90ab0db2b5b3ef2017468ca8 (patch) | |
tree | c98fdb317c068fa8d7d84377c73b2a7e492ea004 | |
parent | 47c4c65cb68a8ce18329df0563dcc4b2de5a3e39 (diff) | |
download | bcm5719-llvm-810b5012824578cd90ab0db2b5b3ef2017468ca8.tar.gz bcm5719-llvm-810b5012824578cd90ab0db2b5b3ef2017468ca8.zip |
Shrink the Type class from 32 to 28 bytes on Darwin (which has silly 32-bit
bools).
llvm-svn: 24326
-rw-r--r-- | llvm/include/llvm/Type.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Type.h b/llvm/include/llvm/Type.h index dd2fd9b1132..d1ca0130d02 100644 --- a/llvm/include/llvm/Type.h +++ b/llvm/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 |