This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from e0e59bbe7c Fix uninitialized variable warnings. NFCI. new 88186b0504 [Concepts] Concept Specialization Expressions
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/ExprCXX.h | 121 +++++++++++++++++ include/clang/AST/RecursiveASTVisitor.h | 6 + include/clang/Basic/DiagnosticSemaKinds.td | 11 +- include/clang/Basic/StmtNodes.td | 3 + include/clang/Sema/Sema.h | 43 +++++- include/clang/Serialization/ASTBitCodes.h | 1 + lib/AST/Expr.cpp | 1 + lib/AST/ExprCXX.cpp | 82 ++++++++++++ lib/AST/ExprClassification.cpp | 1 + lib/AST/ExprConstant.cpp | 8 ++ lib/AST/ItaniumMangle.cpp | 1 + lib/AST/StmtPrinter.cpp | 11 ++ lib/AST/StmtProfile.cpp | 8 ++ lib/CodeGen/CGExprScalar.cpp | 4 + lib/Frontend/FrontendActions.cpp | 4 + lib/Parse/ParseExpr.cpp | 12 +- lib/Sema/CMakeLists.txt | 1 + lib/Sema/SemaConcept.cpp | 125 +++++++++++++++++ lib/Sema/SemaExceptionSpec.cpp | 1 + lib/Sema/SemaTemplate.cpp | 69 ++++++---- lib/Sema/SemaTemplateInstantiate.cpp | 51 ++++++- lib/Sema/TreeTransform.h | 36 +++++ lib/Serialization/ASTReaderStmt.cpp | 24 ++++ lib/Serialization/ASTWriterStmt.cpp | 18 +++ lib/StaticAnalyzer/Core/ExprEngine.cpp | 1 + .../dcl.dcl/dcl.spec/dcl.spec.concept/p1.cpp | 61 --------- .../dcl.dcl/dcl.spec/dcl.spec.concept/p2.cpp | 13 -- .../dcl.dcl/dcl.spec/dcl.spec.concept/p5.cpp | 25 ---- .../dcl.dcl/dcl.spec/dcl.spec.concept/p6.cpp | 25 ---- .../dcl.dcl/dcl.spec/dcl.spec.concept/p7.cpp | 18 --- test/CXX/concepts-ts/dcl.dcl/lit.cfg.py | 26 ---- .../concepts-ts/expr/expr.prim/expr.prim.id/p3.cpp | 4 - test/CXX/expr/expr.prim/expr.prim.id/p3.cpp | 149 +++++++++++++++++++++ .../temp.constr.decl/class-template-decl.cpp | 0 test/PCH/cxx2a-concept-specialization-expr.cpp | 32 +++++ test/Parser/cxx2a-concept-declaration.cpp | 61 ++++++--- tools/libclang/CXCursor.cpp | 1 + 37 files changed, 830 insertions(+), 228 deletions(-) create mode 100644 lib/Sema/SemaConcept.cpp delete mode 100644 test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/p1.cpp delete mode 100644 test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/p2.cpp delete mode 100644 test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/p5.cpp delete mode 100644 test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/p6.cpp delete mode 100644 test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/p7.cpp delete mode 100644 test/CXX/concepts-ts/dcl.dcl/lit.cfg.py delete mode 100644 test/CXX/concepts-ts/expr/expr.prim/expr.prim.id/p3.cpp create mode 100644 test/CXX/expr/expr.prim/expr.prim.id/p3.cpp rename test/CXX/{concepts-ts => }/temp/temp.constr/temp.constr.decl/class-template [...] create mode 100644 test/PCH/cxx2a-concept-specialization-expr.cpp