This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 23ea169fe0 [CFI] Force LLVM to die if the implicit blacklist files cann [...] new dee3c34810 [C++2a] Implement operator<=> CodeGen and ExprConstant
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/ASTContext.h | 5 + include/clang/AST/ComparisonCategories.h | 255 ++++++++++++ include/clang/AST/Expr.h | 4 +- include/clang/Basic/DiagnosticSemaKinds.td | 14 + include/clang/Sema/Overload.h | 7 +- include/clang/Sema/Sema.h | 24 +- lib/AST/ASTContext.cpp | 3 +- lib/AST/CMakeLists.txt | 1 + lib/AST/ComparisonCategories.cpp | 220 ++++++++++ lib/AST/Expr.cpp | 4 +- lib/AST/ExprConstant.cpp | 617 ++++++++++++++++------------- lib/CodeGen/CGExprAgg.cpp | 145 +++++++ lib/Sema/Sema.cpp | 11 +- lib/Sema/SemaDeclCXX.cpp | 129 ++++++ lib/Sema/SemaExpr.cpp | 333 +++++++++++++--- lib/Sema/SemaOverload.cpp | 57 ++- test/CodeGenCXX/Inputs/std-compare.h | 437 ++++++++++++++++++++ test/CodeGenCXX/cxx2a-compare.cpp | 186 +++++++++ test/PCH/Inputs/std-compare.h | 437 ++++++++++++++++++++ test/PCH/cxx2a-compare.cpp | 28 ++ test/SemaCXX/Inputs/std-compare.h | 437 ++++++++++++++++++++ test/SemaCXX/compare-cxx2a.cpp | 324 +++++++++++++-- test/SemaCXX/constant-expression-cxx2a.cpp | 197 ++++++++- test/SemaCXX/std-compare-cxx2a.cpp | 65 +++ 24 files changed, 3548 insertions(+), 392 deletions(-) create mode 100644 include/clang/AST/ComparisonCategories.h create mode 100644 lib/AST/ComparisonCategories.cpp create mode 100644 test/CodeGenCXX/Inputs/std-compare.h create mode 100644 test/CodeGenCXX/cxx2a-compare.cpp create mode 100644 test/PCH/Inputs/std-compare.h create mode 100644 test/PCH/cxx2a-compare.cpp create mode 100644 test/SemaCXX/Inputs/std-compare.h create mode 100644 test/SemaCXX/std-compare-cxx2a.cpp