This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0750944 [analyzer] Make MallocChecker more robust against custom rede [...] new ce58cd7 P0012R1: Make exception specifications be part of the type sy [...]
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/Type.h | 8 ++- include/clang/Basic/DiagnosticSemaKinds.td | 12 ++-- include/clang/Sema/Overload.h | 2 +- include/clang/Sema/Sema.h | 2 +- lib/AST/ASTContext.cpp | 78 ++++++++++++++++++++-- lib/AST/Type.cpp | 35 +++++++--- lib/Sema/SemaDecl.cpp | 20 ++++-- lib/Sema/SemaDeclCXX.cpp | 3 - lib/Sema/SemaExceptionSpec.cpp | 5 ++ lib/Sema/SemaExpr.cpp | 2 +- lib/Sema/SemaExprCXX.cpp | 2 +- lib/Sema/SemaOverload.cpp | 68 +++++++++++++++---- lib/Sema/SemaTemplateDeduction.cpp | 11 ++- lib/Sema/SemaType.cpp | 2 +- test/CXX/conv/conv.fctptr/p1.cpp | 43 ++++++++++++ test/CXX/dcl.decl/dcl.meaning/dcl.fct/p6-0x.cpp | 14 ++++ test/CXX/drs/dr0xx.cpp | 55 +++++++++++---- test/CXX/drs/dr1xx.cpp | 3 - test/CXX/drs/dr2xx.cpp | 15 ++++- test/CXX/except/except.spec/p2-places-1z.cpp | 17 +++++ test/CXX/except/except.spec/p2-places.cpp | 2 + test/CXX/expr/expr.const/p3-0x.cpp | 15 ++++- test/CXX/expr/expr.prim/expr.prim.lambda/p6.cpp | 10 +++ .../over.best.ics/over.ics.scs/p3.cpp | 12 ++++ test/CXX/over/over.over/p1.cpp | 8 ++- .../temp.deduct/temp.deduct.call/p4.cpp | 27 +++++++- .../temp.deduct/temp.deduct.conv/p5.cpp | 43 ++++++++++++ test/SemaCXX/cxx0x-defaulted-functions.cpp | 10 +-- test/SemaCXX/deprecated.cpp | 6 +- 29 files changed, 445 insertions(+), 85 deletions(-) create mode 100644 test/CXX/conv/conv.fctptr/p1.cpp create mode 100644 test/CXX/except/except.spec/p2-places-1z.cpp create mode 100644 test/CXX/over/over.match/over.match.best/over.best.ics/over.ics [...] create mode 100644 test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/p5.cpp