This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 176d940 [Driver] Report invalid -mtune/-mcpu parameters when -arch=arm64 new e32e1d1 C++ Modules TS: Add parsing and some semantic analysis suppor [...]
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/Decl.h | 49 +++++++++++++++++++++ include/clang/AST/DeclBase.h | 5 ++- include/clang/AST/RecursiveASTVisitor.h | 2 + include/clang/Basic/DeclNodes.td | 1 + include/clang/Basic/DiagnosticParseKinds.td | 2 + include/clang/Parse/Parser.h | 1 + include/clang/Sema/Sema.h | 5 +++ include/clang/Sema/Template.h | 1 + include/clang/Serialization/ASTBitCodes.h | 2 + lib/AST/Decl.cpp | 15 +++++++ lib/AST/DeclBase.cpp | 12 ++--- lib/CodeGen/CGDecl.cpp | 1 + lib/CodeGen/CodeGenModule.cpp | 31 ++++++------- lib/CodeGen/CodeGenModule.h | 2 +- lib/Parse/ParseDeclCXX.cpp | 47 ++++++++++++++++++++ lib/Parse/Parser.cpp | 8 +++- lib/Sema/SemaDecl.cpp | 30 +++++++++++++ lib/Sema/SemaLookup.cpp | 4 +- lib/Sema/SemaTemplate.cpp | 4 +- lib/Serialization/ASTCommon.cpp | 2 + lib/Serialization/ASTReaderDecl.cpp | 9 ++++ lib/Serialization/ASTWriterDecl.cpp | 7 +++ test/CodeGenCXX/modules-ts.cppm | 20 +++++++++ test/Parser/cxx-modules-interface.cppm | 43 +++++++++++------- test/SemaCXX/modules-ts.cppm | 68 +++++++++++++++++++++++++++++ tools/libclang/CIndex.cpp | 1 + 26 files changed, 328 insertions(+), 44 deletions(-) create mode 100644 test/CodeGenCXX/modules-ts.cppm create mode 100644 test/SemaCXX/modules-ts.cppm