This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from f4ae1f2c43d maintainer-scripts: Use /sourceware/snapshot-tmp/gcc as tem [...] new 7c1e7eed891 libstdc++: Add C++ runtime support for new 128-bit long dou [...]
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: libstdc++-v3/Makefile.in | 6 +- libstdc++-v3/config.h.in | 4 + libstdc++-v3/config/abi/pre/gnu.ver | 4 +- .../config/os/gnu-linux/ldbl-ieee128-extra.ver | 53 +++++ libstdc++-v3/configure | 131 ++++++++++- libstdc++-v3/configure.ac | 37 +++- libstdc++-v3/doc/Makefile.in | 6 +- libstdc++-v3/fragment.am | 8 +- libstdc++-v3/include/Makefile.am | 6 + libstdc++-v3/include/Makefile.in | 12 +- libstdc++-v3/include/bits/c++config | 32 ++- libstdc++-v3/include/bits/locale_classes.h | 4 + libstdc++-v3/include/bits/locale_facets.h | 43 +++- libstdc++-v3/include/bits/locale_facets.tcc | 27 +++ libstdc++-v3/include/bits/locale_facets_nonio.h | 24 +- libstdc++-v3/include/bits/locale_facets_nonio.tcc | 61 +++++- libstdc++-v3/include/ext/numeric_traits.h | 32 +++ libstdc++-v3/libsupc++/Makefile.in | 6 +- libstdc++-v3/po/Makefile.in | 6 +- libstdc++-v3/python/Makefile.in | 6 +- libstdc++-v3/src/Makefile.am | 47 +++- libstdc++-v3/src/Makefile.in | 57 ++++- libstdc++-v3/src/c++11/Makefile.in | 6 +- .../src/c++11/compatibility-ldbl-alt128-cxx11.cc | 102 +++++++++ .../src/c++11/compatibility-ldbl-alt128.cc | 244 +++++++++++++++++++++ .../src/c++11/compatibility-ldbl-facets-aliases.h | 128 +++++++++++ libstdc++-v3/src/c++11/cow-locale_init.cc | 1 + libstdc++-v3/src/c++11/cxx11-locale-inst.cc | 6 +- libstdc++-v3/src/c++11/cxx11-wlocale-inst.cc | 8 +- libstdc++-v3/src/c++11/locale-inst-monetary.h | 69 ++++++ libstdc++-v3/src/c++11/locale-inst-numeric.h | 133 +++++++++++ libstdc++-v3/src/c++11/locale-inst.cc | 200 +---------------- libstdc++-v3/src/c++11/wlocale-inst.cc | 45 +--- libstdc++-v3/src/c++17/Makefile.am | 7 + libstdc++-v3/src/c++17/Makefile.in | 11 +- libstdc++-v3/src/c++17/floating_from_chars.cc | 38 +++- libstdc++-v3/src/c++20/Makefile.in | 6 +- libstdc++-v3/src/c++98/Makefile.in | 6 +- libstdc++-v3/src/c++98/locale_init.cc | 17 +- libstdc++-v3/src/c++98/localename.cc | 16 +- libstdc++-v3/src/filesystem/Makefile.in | 6 +- .../testsuite/26_numerics/complex/abi_tag.cc | 4 +- libstdc++-v3/testsuite/Makefile.in | 6 +- libstdc++-v3/testsuite/util/testsuite_abi.cc | 20 +- 44 files changed, 1380 insertions(+), 311 deletions(-) create mode 100644 libstdc++-v3/config/os/gnu-linux/ldbl-ieee128-extra.ver create mode 100644 libstdc++-v3/src/c++11/compatibility-ldbl-alt128-cxx11.cc create mode 100644 libstdc++-v3/src/c++11/compatibility-ldbl-alt128.cc create mode 100644 libstdc++-v3/src/c++11/compatibility-ldbl-facets-aliases.h create mode 100644 libstdc++-v3/src/c++11/locale-inst-monetary.h create mode 100644 libstdc++-v3/src/c++11/locale-inst-numeric.h