This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from ea4934045a [Clang][OpenMP Offload] Move offload registration code to th [...] new cf4a18c6aa [Concept] Associated Constraints Infrastructure
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/ASTNodeTraverser.h | 3 + include/clang/AST/DeclTemplate.h | 174 ++++++++------------- include/clang/AST/RecursiveASTVisitor.h | 8 +- include/clang/Basic/DiagnosticSemaKinds.td | 4 +- include/clang/Sema/Sema.h | 8 +- lib/AST/ASTContext.cpp | 2 +- lib/AST/DeclTemplate.cpp | 55 +++++-- lib/Sema/SemaConcept.cpp | 2 +- lib/Sema/SemaTemplate.cpp | 92 +++++------ lib/Sema/SemaTemplateInstantiateDecl.cpp | 15 +- lib/Serialization/ASTReader.cpp | 6 +- lib/Serialization/ASTReaderDecl.cpp | 8 +- lib/Serialization/ASTWriter.cpp | 8 +- lib/Serialization/ASTWriterDecl.cpp | 4 +- test/CXX/temp/concept/p4.cpp | 6 + .../temp.constr.decl/class-template-decl.cpp | 24 ++- .../temp.constr.decl/func-template-decl.cpp | 59 +++++++ .../temp.constr.decl/var-template-decl.cpp | 25 +++ 18 files changed, 293 insertions(+), 210 deletions(-) create mode 100644 test/CXX/temp/concept/p4.cpp create mode 100644 test/CXX/temp/temp.constr/temp.constr.decl/func-template-decl.cpp create mode 100644 test/CXX/temp/temp.constr/temp.constr.decl/var-template-decl.cpp