[clang] Issue #63106: [сlang] Representation of ellipsis in AST (PR #80976)
Chuanqi Xu via cfe-commits
cfe-commits at lists.llvm.org
Mon Feb 26 18:07:58 PST 2024
================
@@ -1053,6 +1053,10 @@ class VarDecl : public DeclaratorDecl, public Redeclarable<VarDecl> {
LLVM_PREFERRED_TYPE(bool)
unsigned ExceptionVar : 1;
+ /// To Check the ellipsis
+ LLVM_PREFERRED_TYPE(bool)
+ unsigned EllipsisVar : 1;
----------------
ChuanqiXu9 wrote:
Should we move this to `ParmVarDeclBitfields`?
https://github.com/llvm/llvm-project/pull/80976
More information about the cfe-commits
mailing list