r191404 - Update NumTypeBits on Type to match the actual number of used bits.

Mark Lacey mark.lacey at apple.com
Wed Sep 25 15:25:21 PDT 2013


Author: rudkx
Date: Wed Sep 25 17:25:21 2013
New Revision: 191404

URL: http://llvm.org/viewvc/llvm-project?rev=191404&view=rev
Log:
Update NumTypeBits on Type to match the actual number of used bits.

Modified:
    cfe/trunk/include/clang/AST/Type.h

Modified: cfe/trunk/include/clang/AST/Type.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Type.h?rev=191404&r1=191403&r2=191404&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Type.h (original)
+++ cfe/trunk/include/clang/AST/Type.h Wed Sep 25 17:25:21 2013
@@ -1214,7 +1214,7 @@ private:
       return CachedLocalOrUnnamed;
     }
   };
-  enum { NumTypeBits = 19 };
+  enum { NumTypeBits = 18 };
 
 protected:
   // These classes allow subclasses to somewhat cleanly pack bitfields





More information about the cfe-commits mailing list