This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from f8f7ace4f20 i386: Introduce crc_rev<mode>si4 expanders [PR120719] new 29c7661c6f9 c++, libstdc++: Implement C++26 P2830R10 - Constexpr Type Ordering new af5b72cf9f5 libstdc++: Implement C++26 P2927R3 - Inspecting exception_ptr
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: gcc/cp/constraint.cc | 3 + gcc/cp/cp-trait.def | 1 + gcc/cp/cp-tree.h | 2 + gcc/cp/method.cc | 21 +++++ gcc/cp/semantics.cc | 13 ++- gcc/testsuite/g++.dg/cpp26/type-order1.C | 94 +++++++++++++++++++++ gcc/testsuite/g++.dg/cpp26/type-order2.C | 4 + gcc/testsuite/g++.dg/cpp26/type-order3.C | 8 ++ libstdc++-v3/config/abi/pre/gnu.ver | 10 +++ libstdc++-v3/include/bits/version.def | 18 ++++ libstdc++-v3/include/bits/version.h | 20 +++++ libstdc++-v3/libsupc++/compare | 23 ++++++ libstdc++-v3/libsupc++/eh_ptr.cc | 16 ++++ libstdc++-v3/libsupc++/exception | 1 + libstdc++-v3/libsupc++/exception_ptr.h | 28 +++++++ libstdc++-v3/src/c++23/std.cc.in | 7 ++ .../18_support/comparisons/type_order/1.cc | 95 ++++++++++++++++++++++ .../18_support/exception_ptr/exception_ptr_cast.cc | 81 ++++++++++++++++++ libstdc++-v3/testsuite/util/testsuite_abi.cc | 1 + 19 files changed, 445 insertions(+), 1 deletion(-) create mode 100644 gcc/testsuite/g++.dg/cpp26/type-order1.C create mode 100644 gcc/testsuite/g++.dg/cpp26/type-order2.C create mode 100644 gcc/testsuite/g++.dg/cpp26/type-order3.C create mode 100644 libstdc++-v3/testsuite/18_support/comparisons/type_order/1.cc create mode 100644 libstdc++-v3/testsuite/18_support/exception_ptr/exception_ptr_cast.cc