From: Mark Lacey Date: Wed, 25 Sep 2013 22:25:21 +0000 (+0000) Subject: Update NumTypeBits on Type to match the actual number of used bits. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=92011d0a1bc6a77480c398f27b673be62744af4d;p=clang Update NumTypeBits on Type to match the actual number of used bits. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191404 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h index ca2e42b8f3..8df030c842 100644 --- a/include/clang/AST/Type.h +++ b/include/clang/AST/Type.h @@ -1214,7 +1214,7 @@ private: return CachedLocalOrUnnamed; } }; - enum { NumTypeBits = 19 }; + enum { NumTypeBits = 18 }; protected: // These classes allow subclasses to somewhat cleanly pack bitfields