This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 830db7a928 [OpenMP] Add support for registering requires directives wit [...] new 2cbdb2c8c9 [c++20] P0780R2: Support pack-expansion of init-captures. new 52cec611bd Fix test failures after r361278 on non-Darwin platforms and [...] new 5c556b2b04 Remove unicode character from test
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/AST/ASTContext.h | 2 +- include/clang/AST/Decl.h | 8 +- include/clang/AST/ExprCXX.h | 24 ++-- include/clang/AST/Type.h | 10 +- include/clang/Basic/DiagnosticParseKinds.td | 13 +- include/clang/Basic/DiagnosticSemaKinds.td | 5 + include/clang/Sema/Sema.h | 15 ++- include/clang/Sema/Template.h | 4 +- lib/AST/ASTContext.cpp | 17 ++- lib/AST/Decl.cpp | 8 +- lib/AST/DeclBase.cpp | 4 +- lib/AST/ExprCXX.cpp | 14 +- lib/AST/ItaniumMangle.cpp | 61 +++++---- lib/AST/JSONNodeDumper.cpp | 1 + lib/AST/TextNodeDumper.cpp | 2 + lib/AST/Type.cpp | 4 + lib/Parse/ParseExprCXX.cpp | 138 ++++++++++++-------- lib/Sema/SemaLambda.cpp | 42 ++++-- lib/Sema/SemaTemplateDeduction.cpp | 33 ++++- lib/Sema/SemaTemplateInstantiate.cpp | 56 ++++---- lib/Sema/SemaTemplateVariadic.cpp | 38 +++--- lib/Sema/TreeTransform.h | 143 ++++++++++++++------- lib/Serialization/ASTReader.cpp | 9 +- lib/Serialization/ASTReaderStmt.cpp | 4 +- lib/Serialization/ASTWriter.cpp | 3 +- .../expr.prim.lambda.capture/p17.cpp | 42 ++++++ test/CXX/expr/expr.prim/expr.prim.lambda/p23.cpp | 26 +++- .../temp/temp.decls/temp.variadic/init-capture.cpp | 39 ++++++ test/Driver/darwin-header-search-libcxx.cpp | 6 +- test/Driver/darwin-header-search-libstdcxx.cpp | 4 +- test/FixIt/fixit-c++2a.cpp | 15 +++ test/SemaObjC/nullability_macro.m | 3 +- test/SemaTemplate/sizeof-pack.cpp | 8 +- www/cxx_status.html | 2 +- 34 files changed, 552 insertions(+), 251 deletions(-) create mode 100644 test/CXX/expr/expr.prim/expr.prim.lambda/expr.prim.lambda.captu [...] create mode 100644 test/CXX/temp/temp.decls/temp.variadic/init-capture.cpp create mode 100644 test/FixIt/fixit-c++2a.cpp