[PATCH] D49508: [Sema] Mark implicitly-inserted ICE's as being part of explicit cast (PR38166)
John McCall via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jul 20 11:40:42 PDT 2018
rjmccall added inline comments.
================
Comment at: include/clang/AST/Stmt.h:206
+ bool PartOfExplicitCast : 1;
+ unsigned BasePathSize : 32 - 6 - 1 - NumExprBits;
};
----------------
lebedev.ri wrote:
> rjmccall wrote:
> > This needs to be serialized.
> Uhm, could you please explain what do you mean by 'serialized'?
It needs to be preserved when writing an ICE into a PCH / module file. See the ASTWriter / ASTReader.
Repository:
rC Clang
https://reviews.llvm.org/D49508
More information about the cfe-commits
mailing list