This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from f19939b529 Renamed test file to use proper naming convention new 96881be75c [c++20] P0515R3: Parsing support and basic AST construction [...]
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/Expr.h | 2 +- include/clang/AST/OperationKinds.def | 8 +- include/clang/AST/RecursiveASTVisitor.h | 4 +- include/clang/AST/StmtVisitor.h | 3 + include/clang/Analysis/Analyses/ThreadSafetyTIL.h | 1 + include/clang/Basic/DiagnosticSemaKinds.td | 20 +-- include/clang/Basic/OperatorPrecedence.h | 9 +- lib/AST/Expr.cpp | 2 + lib/AST/ExprConstant.cpp | 1 + lib/Analysis/ThreadSafetyCommon.cpp | 1 + lib/Analysis/ThreadSafetyTIL.cpp | 1 + lib/Basic/OperatorPrecedence.cpp | 1 + lib/CodeGen/CGExprScalar.cpp | 1 + lib/CodeGen/CGStmtOpenMP.cpp | 1 + lib/Format/ContinuationIndenter.cpp | 6 +- lib/Format/Format.cpp | 1 + lib/Format/TokenAnnotator.cpp | 2 +- lib/Parse/ParseExpr.cpp | 17 ++- lib/Sema/SemaChecking.cpp | 25 +++- lib/Sema/SemaExpr.cpp | 8 + lib/Sema/SemaOpenMP.cpp | 1 + lib/Sema/SemaStmt.cpp | 37 +++-- .../Checkers/IdenticalExprChecker.cpp | 5 +- lib/StaticAnalyzer/Core/BugReporterVisitors.cpp | 2 +- lib/StaticAnalyzer/Core/RangeConstraintManager.cpp | 4 +- .../Core/RangedConstraintManager.cpp | 2 +- lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp | 2 +- test/CodeGenCXX/cxx2a-three-way-comparison.cpp | 16 ++ test/Parser/cxx2a-spaceship.cpp | 18 +++ test/SemaCXX/compare-cxx2a.cpp | 166 +++++++++++++++++++++ test/SemaCXX/constant-expression-cxx2a.cpp | 27 ++++ test/SemaTemplate/cxx1z-fold-expressions.cpp | 16 ++ unittests/Format/FormatTest.cpp | 8 + 33 files changed, 366 insertions(+), 52 deletions(-) create mode 100644 test/Parser/cxx2a-spaceship.cpp create mode 100644 test/SemaCXX/compare-cxx2a.cpp create mode 100644 test/SemaCXX/constant-expression-cxx2a.cpp