This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0e042f01ab Reapply: [Modules][PCH] Hash input files content new 04a9a9ffc7 Revert 374882 "[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 | 79 ----------- 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 + .../temp.constr.decl/class-template-decl.cpp | 0 test/CXX/expr/expr.prim/expr.prim.id/p3.cpp | 149 --------------------- test/PCH/cxx2a-concept-specialization-expr.cpp | 32 ----- test/Parser/cxx2a-concept-declaration.cpp | 61 +++------ tools/libclang/CXCursor.cpp | 1 - 37 files changed, 228 insertions(+), 827 deletions(-) delete mode 100644 lib/Sema/SemaConcept.cpp create mode 100644 test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/p1.cpp create mode 100644 test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/p2.cpp create mode 100644 test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/p5.cpp create mode 100644 test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/p6.cpp create mode 100644 test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/p7.cpp create mode 100644 test/CXX/concepts-ts/dcl.dcl/lit.cfg.py create mode 100644 test/CXX/concepts-ts/expr/expr.prim/expr.prim.id/p3.cpp rename test/CXX/{ => concepts-ts}/temp/temp.constr/temp.constr.decl/class-template [...] delete mode 100644 test/CXX/expr/expr.prim/expr.prim.id/p3.cpp delete mode 100644 test/PCH/cxx2a-concept-specialization-expr.cpp