1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00

Shrink the Type class from 32 to 28 bytes on Darwin (which has silly 32-bit

bools).

llvm-svn: 24326
This commit is contained in:
Chris Lattner 2005-11-12 10:07:47 +00:00
parent dec8e7e0aa
commit 3a350f3f83

View File

@ -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