This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-14 in repository gcc.
from 21952da5d51 Daily bump. new 2c39bf386d9 libstdc++: Fix unsigned wraparound in codecvt::do_length [P [...] new 04feff723ea libstdc++: Implement <stdbit.h> for C++26 (P3370R1) new a984819f300 libstdc++: Implement <stdckdint.h> for C++26 (P3370R1)
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: .../config/locale/dragonfly/codecvt_members.cc | 9 +- libstdc++-v3/config/locale/gnu/codecvt_members.cc | 9 +- libstdc++-v3/include/Makefile.am | 2 + libstdc++-v3/include/Makefile.in | 2 + libstdc++-v3/include/c_compatibility/stdbit.h | 582 +++++++++++++++++++++ libstdc++-v3/include/c_compatibility/stdckdint.h | 113 ++++ libstdc++-v3/testsuite/20_util/stdbit/1.cc | 320 +++++++++++ libstdc++-v3/testsuite/20_util/stdbit/2_neg.cc | 45 ++ .../22_locale/codecvt/length/wchar_t/105857.cc | 21 + libstdc++-v3/testsuite/26_numerics/stdckdint/1.cc | 63 +++ .../testsuite/26_numerics/stdckdint/2_neg.cc | 39 ++ 11 files changed, 1199 insertions(+), 6 deletions(-) create mode 100644 libstdc++-v3/include/c_compatibility/stdbit.h create mode 100644 libstdc++-v3/include/c_compatibility/stdckdint.h create mode 100644 libstdc++-v3/testsuite/20_util/stdbit/1.cc create mode 100644 libstdc++-v3/testsuite/20_util/stdbit/2_neg.cc create mode 100644 libstdc++-v3/testsuite/22_locale/codecvt/length/wchar_t/105857.cc create mode 100644 libstdc++-v3/testsuite/26_numerics/stdckdint/1.cc create mode 100644 libstdc++-v3/testsuite/26_numerics/stdckdint/2_neg.cc