This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 3b03365d5f DebugInfo: Render the canonical name of a class template spe [...] new ea521aa602 [c++20] Add CXXRewrittenBinaryOperator to represent a compar [...] new 05441b0db7 [c++20] Add rewriting from comparison operators to <=> / ==. new e0c6af7e0c [analyzer] Specify the C++ standard in more tests.
The 3 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 | 90 ++++ include/clang/AST/RecursiveASTVisitor.h | 9 + include/clang/AST/Stmt.h | 10 + include/clang/Basic/DiagnosticSemaKinds.td | 15 +- include/clang/Basic/OperatorKinds.h | 19 + include/clang/Basic/StmtNodes.td | 1 + include/clang/Sema/Overload.h | 94 +++- include/clang/Sema/Sema.h | 55 ++- include/clang/Serialization/ASTBitCodes.h | 3 + lib/AST/Expr.cpp | 1 + lib/AST/ExprCXX.cpp | 70 +++ lib/AST/ExprClassification.cpp | 4 + lib/AST/ExprConstant.cpp | 7 + lib/AST/ItaniumMangle.cpp | 11 + lib/AST/StmtPrinter.cpp | 9 + lib/AST/StmtProfile.cpp | 10 + lib/CodeGen/CGExpr.cpp | 2 + lib/CodeGen/CGExprAgg.cpp | 3 + lib/CodeGen/CGExprComplex.cpp | 4 + lib/CodeGen/CGExprScalar.cpp | 4 + lib/Frontend/FrontendActions.cpp | 2 + lib/Sema/SemaExceptionSpec.cpp | 1 + lib/Sema/SemaExpr.cpp | 7 + lib/Sema/SemaOverload.cpp | 477 ++++++++++++++++----- lib/Sema/SemaTemplate.cpp | 3 +- lib/Sema/SemaTemplateInstantiate.cpp | 7 + lib/Sema/TreeTransform.h | 55 +++ lib/Serialization/ASTReaderStmt.cpp | 11 + lib/Serialization/ASTWriter.cpp | 1 + lib/Serialization/ASTWriterStmt.cpp | 8 + lib/StaticAnalyzer/Core/ExprEngine.cpp | 1 + test/Analysis/cast-value-logic.cpp | 2 +- test/Analysis/cast-value-notes.cpp | 2 +- test/Analysis/cast-value-state-dump.cpp | 2 +- test/Analysis/ctu-different-triples.cpp | 4 +- test/Analysis/ctu-main.cpp | 8 +- test/Analysis/ctu-unknown-parts-in-triples.cpp | 4 +- test/Analysis/deadstores-driverkit.cpp | 2 +- test/Analysis/diagnostics/dtors.cpp | 2 +- test/Analysis/domtest.cpp | 2 +- test/Analysis/explain-svals.cpp | 2 +- test/Analysis/initialization.cpp | 2 +- .../inlining/placement-new-fp-suppression.cpp | 4 +- test/Analysis/inner-pointer.cpp | 2 +- test/Analysis/malloc.mm | 2 +- test/Analysis/mig.mm | 2 +- test/Analysis/new-ctor-null-throw.cpp | 4 +- test/Analysis/new-ctor-null.cpp | 2 +- test/Analysis/osobject-retain-release.cpp | 2 +- test/Analysis/osobjectcstylecastchecker_test.cpp | 2 +- test/Analysis/plist-macros-with-expansion.cpp | 4 +- test/Analysis/ptr-iter.cpp | 2 +- test/Analysis/ptr-sort.cpp | 2 +- test/Analysis/rvo.cpp | 2 +- test/Analysis/sizeofpack.cpp | 2 +- test/Analysis/stack-frame-context-revision.cpp | 2 +- test/Analysis/temporaries.mm | 2 +- test/Analysis/test-separate-retaincount.cpp | 6 +- .../track-control-dependency-conditions.cpp | 8 +- test/Analysis/unions.cpp | 2 +- .../over.match.funcs/over.match.oper/p3-2a.cpp | 172 ++++++++ .../over.match.funcs/over.match.oper/p8-2a.cpp | 70 +++ .../over.match.funcs/over.match.oper/p9-2a.cpp | 38 ++ test/CXX/temp/temp.fct.spec/temp.deduct/p7.cpp | 34 ++ test/CodeGenCXX/mangle-cxx2a.cpp | 11 + test/PCH/cxx2a-compare.cpp | 13 + test/SemaCXX/compare-cxx2a.cpp | 8 +- test/SemaCXX/self-comparison.cpp | 2 +- tools/libclang/CXCursor.cpp | 1 + www/cxx_status.html | 7 +- 70 files changed, 1248 insertions(+), 186 deletions(-) create mode 100644 test/CXX/over/over.match/over.match.funcs/over.match.oper/p3-2a.cpp create mode 100644 test/CXX/over/over.match/over.match.funcs/over.match.oper/p8-2a.cpp create mode 100644 test/CXX/over/over.match/over.match.funcs/over.match.oper/p9-2a.cpp create mode 100644 test/CodeGenCXX/mangle-cxx2a.cpp