This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 8747ea8 [Profile] Enable profile merging with -fprofile-generat[=<dir>] new 1a9b9ad P0217R3: Parsing support and framework for AST representation [...]
The 1 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/DeclCXX.h | 90 +++++++++- include/clang/AST/RecursiveASTVisitor.h | 12 ++ include/clang/Basic/DeclNodes.td | 2 + include/clang/Basic/DiagnosticParseKinds.td | 4 + include/clang/Basic/DiagnosticSemaKinds.td | 23 +++ include/clang/Parse/Parser.h | 5 + include/clang/Sema/DeclSpec.h | 172 ++++++++++++++++--- include/clang/Sema/Sema.h | 7 +- lib/AST/ASTDumper.cpp | 7 + lib/AST/DeclBase.cpp | 2 + lib/AST/DeclCXX.cpp | 38 +++++ lib/AST/ItaniumMangle.cpp | 20 ++- lib/CodeGen/CGDecl.cpp | 5 +- lib/CodeGen/CodeGenModule.cpp | 1 + lib/Parse/ParseDecl.cpp | 76 ++++++++- lib/Parse/ParseExprCXX.cpp | 1 + lib/Parse/ParseTentative.cpp | 9 +- lib/Sema/DeclSpec.cpp | 36 +++- lib/Sema/SemaDecl.cpp | 253 +++++++++++++++++++++++++--- lib/Sema/SemaDeclCXX.cpp | 3 +- lib/Sema/SemaExpr.cpp | 13 +- lib/Sema/SemaTemplateInstantiateDecl.cpp | 10 ++ lib/Serialization/ASTCommon.cpp | 2 + test/Parser/cxx1z-decomposition.cpp | 135 +++++++++++++++ test/SemaCXX/cxx1z-decomposition.cpp | 11 ++ tools/libclang/CIndex.cpp | 4 +- 26 files changed, 879 insertions(+), 62 deletions(-) create mode 100644 test/Parser/cxx1z-decomposition.cpp create mode 100644 test/SemaCXX/cxx1z-decomposition.cpp