rjmccall added inline comments.
================
Comment at: include/clang/AST/Stmt.h:205
unsigned Kind : 6;
- unsigned BasePathSize : 32 - 6 - NumExprBits;
+ bool PartOfExplicitCast : 1;
+ unsigned BasePathSize : 32 - 6 - 1 - NumExprBits;
----------------
This needs to be `unsigned` to pack optimally on MSVC.
================
Comment at: include/clang/AST/Stmt.h:206
+ bool PartOfExplicitCast : 1;
+ unsigned BasePathSize : 32 - 6 - 1 - NumExprBits;
};
----------------
This needs to be serialized.
Repository:
rC Clang
https://reviews.llvm.org/D49508
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits