This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from c982075 [CMake] Connect check-compiler-rt to check-all new 5be817d P0136R1, DR1573, DR1645, DR1715, DR1736, DR1903, DR1941, DR19 [...] new 1d424cd Fix unreasonably-precise CHECK.
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/AST/ASTMutationListener.h | 1 + include/clang/AST/Decl.h | 1 + include/clang/AST/DeclCXX.h | 207 +++++- include/clang/AST/ExprCXX.h | 67 ++ include/clang/AST/RecursiveASTVisitor.h | 3 + include/clang/Basic/DeclNodes.td | 1 + include/clang/Basic/DiagnosticASTKinds.td | 5 + include/clang/Basic/DiagnosticSemaKinds.td | 97 +-- include/clang/Basic/StmtNodes.td | 1 + include/clang/Sema/Overload.h | 3 +- include/clang/Sema/Sema.h | 20 +- include/clang/Serialization/ASTBitCodes.h | 6 + lib/AST/ASTDumper.cpp | 32 + lib/AST/DeclBase.cpp | 1 + lib/AST/DeclCXX.cpp | 109 ++- lib/AST/Expr.cpp | 7 + lib/AST/ExprClassification.cpp | 1 + lib/AST/ExprConstant.cpp | 98 ++- lib/AST/ItaniumMangle.cpp | 48 +- lib/AST/NestedNameSpecifier.cpp | 13 +- lib/AST/StmtPrinter.cpp | 5 + lib/AST/StmtProfile.cpp | 6 + lib/CodeGen/CGCall.cpp | 24 +- lib/CodeGen/CGClass.cpp | 216 ++++-- lib/CodeGen/CGDecl.cpp | 1 + lib/CodeGen/CGExprAgg.cpp | 9 + lib/CodeGen/CodeGenFunction.cpp | 59 +- lib/CodeGen/CodeGenFunction.h | 83 +++ lib/CodeGen/CodeGenModule.cpp | 9 + lib/CodeGen/CodeGenTypes.h | 5 + lib/Sema/SemaAccess.cpp | 26 +- lib/Sema/SemaDeclCXX.cpp | 748 ++++++++++----------- lib/Sema/SemaExceptionSpec.cpp | 4 + lib/Sema/SemaExpr.cpp | 15 - lib/Sema/SemaExprCXX.cpp | 5 +- lib/Sema/SemaInit.cpp | 34 +- lib/Sema/SemaLookup.cpp | 52 +- lib/Sema/SemaOverload.cpp | 107 +-- lib/Sema/SemaTemplateInstantiateDecl.cpp | 58 +- lib/Sema/TreeTransform.h | 36 + lib/Serialization/ASTCommon.cpp | 1 + lib/Serialization/ASTReaderDecl.cpp | 38 +- lib/Serialization/ASTReaderStmt.cpp | 12 + lib/Serialization/ASTWriter.cpp | 1 + lib/Serialization/ASTWriterDecl.cpp | 23 +- lib/Serialization/ASTWriterStmt.cpp | 9 + lib/StaticAnalyzer/Core/ExprEngine.cpp | 1 + .../basic.lookup.qual/class.qual/p2.cpp | 9 +- test/CXX/basic/basic.types/p10.cpp | 42 ++ .../basic.namespace/namespace.udecl/p15.cpp | 81 +++ .../basic.namespace/namespace.udecl/p18.cpp | 77 +++ .../dcl.dcl/basic.namespace/namespace.udecl/p4.cpp | 28 +- test/CXX/drs/dr15xx.cpp | 25 + test/CXX/drs/dr16xx.cpp | 21 +- test/CXX/drs/dr17xx.cpp | 52 +- test/CXX/drs/dr19xx.cpp | 111 ++- test/CXX/except/except.spec/p14.cpp | 20 +- test/CXX/special/class.inhctor/p1.cpp | 66 +- test/CXX/special/class.inhctor/p2.cpp | 58 +- test/CXX/special/class.inhctor/p3.cpp | 51 +- test/CXX/special/class.inhctor/p4.cpp | 25 +- test/CXX/special/class.inhctor/p7.cpp | 49 +- test/CXX/special/class.inhctor/p8.cpp | 8 +- .../special/class.init/class.inhctor.init/p1.cpp | 124 ++++ .../special/class.init/class.inhctor.init/p2.cpp | 33 + test/CodeGenCXX/inheriting-constructor.cpp | 406 ++++++++++- test/PCH/cxx11-inheriting-ctors.cpp | 34 +- test/SemaCXX/constant-expression-cxx11.cpp | 37 + test/SemaCXX/cxx11-inheriting-ctors.cpp | 10 + tools/libclang/CIndex.cpp | 4 + tools/libclang/CXCursor.cpp | 1 + www/cxx_status.html | 5 +- 72 files changed, 2754 insertions(+), 931 deletions(-) create mode 100644 test/CXX/dcl.dcl/basic.namespace/namespace.udecl/p15.cpp create mode 100644 test/CXX/dcl.dcl/basic.namespace/namespace.udecl/p18.cpp create mode 100644 test/CXX/special/class.init/class.inhctor.init/p1.cpp create mode 100644 test/CXX/special/class.init/class.inhctor.init/p2.cpp