[PATCH] D152069: [1/11][Clang][Type] Expand BuiltinTypeBits from 8 to 16 bits

Yueh-Ting (eop) Chen via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Jun 6 21:52:34 PDT 2023


eopXD updated this revision to Diff 529151.
eopXD marked an inline comment as done.
eopXD added a comment.

Address comment from Erich.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D152069/new/

https://reviews.llvm.org/D152069

Files:
  clang/include/clang/AST/Type.h


Index: clang/include/clang/AST/Type.h
===================================================================
--- clang/include/clang/AST/Type.h
+++ clang/include/clang/AST/Type.h
@@ -1649,7 +1649,7 @@
     unsigned : NumTypeBits;
 
     /// The kind (BuiltinType::Kind) of builtin type this is.
-    unsigned Kind : 8;
+    unsigned Kind : 9;
   };
 
   /// FunctionTypeBitfields store various bits belonging to FunctionProtoType.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D152069.529151.patch
Type: text/x-patch
Size: 428 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230607/5925e0ce/attachment-0001.bin>


More information about the cfe-commits mailing list