This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 3a33970 CodeGen: Rename a variable to better fit LLVM style. NFC new ec9187d C++ Modules TS: Add parsing support for module import declaration. new 4453feb PR28794: Don't try to instantiate function templates which ar [...]
The 2 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/Basic/DiagnosticParseKinds.td | 2 + include/clang/Parse/Parser.h | 3 +- include/clang/Sema/Sema.h | 8 +++ lib/Lex/Preprocessor.cpp | 12 ++-- lib/Parse/ParseDecl.cpp | 22 +++++--- lib/Parse/Parser.cpp | 43 +++++++++++---- lib/Sema/SemaDecl.cpp | 5 +- lib/Sema/SemaTemplate.cpp | 64 ++++++++++++++++++++++ lib/Sema/SemaTemplateInstantiate.cpp | 60 +------------------- lib/Sema/SemaTemplateInstantiateDecl.cpp | 32 +++++++---- test/Modules/Inputs/PR28794/LibAHeader.h | 12 ++++ .../{PR27041/Rtypes.h => PR28794/Subdir/Empty.h} | 0 test/Modules/Inputs/PR28794/Subdir/LibBHeader.h | 12 ++++ test/Modules/Inputs/PR28794/module.modulemap | 3 + test/Parser/cxx-modules-import.cpp | 22 ++++++++ 15 files changed, 203 insertions(+), 97 deletions(-) create mode 100644 test/Modules/Inputs/PR28794/LibAHeader.h copy test/Modules/Inputs/{PR27041/Rtypes.h => PR28794/Subdir/Empty.h} (100%) create mode 100644 test/Modules/Inputs/PR28794/Subdir/LibBHeader.h create mode 100644 test/Modules/Inputs/PR28794/module.modulemap create mode 100644 test/Parser/cxx-modules-import.cpp