This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 3fd32d3d22d testsuite: Add testcase for already fixed PR [PR110251] new 665a3ff1539 libstdc++: Do not use CTAD for _Utf32_view alias template new df0a668b784 libstdc++: Implement C++26 std::text_encoding (P1885R12) [P [...]
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: libstdc++-v3/acinclude.m4 | 30 +- libstdc++-v3/config.h.in | 3 + libstdc++-v3/configure | 70 +- libstdc++-v3/configure.ac | 3 + libstdc++-v3/include/Makefile.am | 2 + libstdc++-v3/include/Makefile.in | 2 + libstdc++-v3/include/bits/locale_classes.h | 14 + libstdc++-v3/include/bits/text_encoding-data.h | 902 +++++++++++++++++++++ libstdc++-v3/include/bits/unicode.h | 75 +- libstdc++-v3/include/bits/version.def | 10 + libstdc++-v3/include/bits/version.h | 13 +- libstdc++-v3/include/std/text_encoding | 678 ++++++++++++++++ libstdc++-v3/python/libstdcxx/v6/printers.py | 17 + libstdc++-v3/scripts/gen_text_encoding_data.py | 70 ++ libstdc++-v3/src/Makefile.am | 3 +- libstdc++-v3/src/Makefile.in | 7 +- libstdc++-v3/src/{c++23 => c++26}/Makefile.am | 24 +- libstdc++-v3/src/{c++23 => c++26}/Makefile.in | 40 +- libstdc++-v3/src/c++26/text_encoding.cc | 91 +++ libstdc++-v3/src/experimental/Makefile.am | 2 + libstdc++-v3/src/experimental/Makefile.in | 2 + .../testsuite/22_locale/locale/encoding.cc | 36 + .../testsuite/ext/unicode/charset_alias_match.cc | 18 + libstdc++-v3/testsuite/std/text_encoding/cons.cc | 113 +++ .../testsuite/std/text_encoding/members.cc | 86 ++ .../testsuite/std/text_encoding/requirements.cc | 77 ++ 26 files changed, 2335 insertions(+), 53 deletions(-) create mode 100644 libstdc++-v3/include/bits/text_encoding-data.h create mode 100644 libstdc++-v3/include/std/text_encoding create mode 100755 libstdc++-v3/scripts/gen_text_encoding_data.py copy libstdc++-v3/src/{c++23 => c++26}/Makefile.am (87%) copy libstdc++-v3/src/{c++23 => c++26}/Makefile.in (95%) create mode 100644 libstdc++-v3/src/c++26/text_encoding.cc create mode 100644 libstdc++-v3/testsuite/22_locale/locale/encoding.cc create mode 100644 libstdc++-v3/testsuite/ext/unicode/charset_alias_match.cc create mode 100644 libstdc++-v3/testsuite/std/text_encoding/cons.cc create mode 100644 libstdc++-v3/testsuite/std/text_encoding/members.cc create mode 100644 libstdc++-v3/testsuite/std/text_encoding/requirements.cc