This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from e4c4fc5523 Fix failure in lit test kernel-call.cu new 45d663da56 [c++2a] [concepts] Add rudimentary parsing support for templ [...]
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/DeclTemplate.h | 40 +++++++ include/clang/AST/RecursiveASTVisitor.h | 7 ++ include/clang/Basic/DeclNodes.td | 1 + include/clang/Basic/DiagnosticParseKinds.td | 18 +++ include/clang/Basic/DiagnosticSemaKinds.td | 35 ++---- include/clang/Basic/TemplateKinds.h | 6 +- include/clang/Parse/Parser.h | 16 ++- include/clang/Sema/DeclSpec.h | 52 ++++++++- include/clang/Sema/Sema.h | 15 +++ include/clang/Serialization/ASTBitCodes.h | 3 + lib/AST/ASTDumper.cpp | 7 ++ lib/AST/DeclBase.cpp | 1 + lib/AST/DeclTemplate.cpp | 21 ++++ lib/CodeGen/CGDecl.cpp | 1 + lib/CodeGen/CodeGenModule.cpp | 1 + lib/Parse/ParseDecl.cpp | 22 ++-- lib/Parse/ParseDeclCXX.cpp | 4 +- lib/Parse/ParseObjc.cpp | 4 +- lib/Parse/ParseTemplate.cpp | 169 ++++++++++++++++++++++++++-- lib/Parse/ParseTentative.cpp | 1 + lib/Parse/Parser.cpp | 6 +- lib/Sema/DeclSpec.cpp | 66 ++++++++++- lib/Sema/SemaDecl.cpp | 6 + lib/Sema/SemaDeclCXX.cpp | 2 +- lib/Sema/SemaTemplate.cpp | 89 ++++++++++++++- lib/Sema/SemaTemplateInstantiateDecl.cpp | 5 + lib/Serialization/ASTCommon.cpp | 1 + lib/Serialization/ASTReaderDecl.cpp | 9 ++ lib/Serialization/ASTWriter.cpp | 1 + lib/Serialization/ASTWriterDecl.cpp | 7 ++ test/Parser/cxx-concept-declaration.cpp | 7 -- test/Parser/cxx2a-concept-declaration.cpp | 83 ++++++++++++++ tools/libclang/CIndex.cpp | 1 + 33 files changed, 635 insertions(+), 72 deletions(-) delete mode 100644 test/Parser/cxx-concept-declaration.cpp create mode 100644 test/Parser/cxx2a-concept-declaration.cpp