This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-13 in repository gcc.
from adbb9c645d5 testsuite: Use -fno-report-bug in gcc.dg/plugin/ new 52997b14311 libstdc++: Improve tests for emplace member of sequence containers new 4b05a7d051a libstdc++: Add missing noexcept to std::scoped_allocator_adaptor new aa087355c72 libstdc++: Fix some tests that fail with -fexcess-precision [...] new 132015b9c6c libstdc++: Add preprocessor checks to <experimental/interne [...] new dbd4acd7227 libstdc++: Disable cacheline alignment for DJGPP [PR109741] new ae7cdc8c0f5 libstdc++: Fix P2510R3 "Formatting pointers" [PR110149] new 2d40cd2f199 libstdc++: Fix std::format for pointers [PR110239] new fa78e9a672a libstdc++: Disable embedded tzdata for all 16-bit targets new b7b70cba656 libstdc++: Fix configure test for 32-bit targets
The 9 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 | 40 ++++++++-- libstdc++-v3/config.h.in | 4 + libstdc++-v3/configure | 67 ++++++++++++++-- libstdc++-v3/configure.ac | 3 + libstdc++-v3/include/experimental/internet | 2 + libstdc++-v3/include/std/format | 89 ++++++++++++++-------- libstdc++-v3/include/std/scoped_allocator | 45 ++++++----- libstdc++-v3/src/c++11/shared_ptr.cc | 8 +- libstdc++-v3/testsuite/20_util/duration/cons/2.cc | 4 +- libstdc++-v3/testsuite/20_util/from_chars/5.cc | 8 +- libstdc++-v3/testsuite/20_util/from_chars/6.cc | 2 +- .../testsuite/20_util/scoped_allocator/noexcept.cc | 47 ++++++++++++ libstdc++-v3/testsuite/20_util/variant/86874.cc | 4 +- .../23_containers/deque/modifiers/emplace/1.cc | 70 +++++++++++++++++ .../23_containers/deque/modifiers/emplace/52799.cc | 27 ------- .../deque/modifiers/emplace/const_iterator.cc | 26 ------- .../23_containers/list/modifiers/emplace/1.cc | 71 +++++++++++++++++ .../23_containers/list/modifiers/emplace/52799.cc | 27 ------- .../list/modifiers/emplace/const_iterator.cc | 26 ------- .../23_containers/vector/modifiers/emplace/1.cc | 70 +++++++++++++++++ .../vector/modifiers/emplace/52799.cc | 27 ------- .../vector/modifiers/emplace/const_iterator.cc | 26 ------- .../25_algorithms/lower_bound/partitioned.cc | 4 +- .../random/discrete_distribution/cons/range.cc | 4 +- .../piecewise_constant_distribution/cons/range.cc | 4 +- .../piecewise_linear_distribution/cons/range.cc | 2 +- .../testsuite/26_numerics/valarray/transcend.cc | 2 +- .../basic_istream/extractors_arithmetic/char/01.cc | 2 +- .../basic_istream/extractors_arithmetic/char/09.cc | 2 +- .../basic_istream/extractors_arithmetic/char/10.cc | 2 +- .../extractors_arithmetic/wchar_t/01.cc | 2 +- .../extractors_arithmetic/wchar_t/09.cc | 2 +- .../extractors_arithmetic/wchar_t/10.cc | 2 +- .../ext/random/hoyt_distribution/cons/parms.cc | 2 +- .../testsuite/std/format/functions/format.cc | 42 ++++++++++ libstdc++-v3/testsuite/std/format/parse_ctx.cc | 15 ++-- libstdc++-v3/testsuite/std/format/string.cc | 5 ++ 37 files changed, 534 insertions(+), 251 deletions(-) create mode 100644 libstdc++-v3/testsuite/20_util/scoped_allocator/noexcept.cc create mode 100644 libstdc++-v3/testsuite/23_containers/deque/modifiers/emplace/1.cc delete mode 100644 libstdc++-v3/testsuite/23_containers/deque/modifiers/emplace/52799.cc delete mode 100644 libstdc++-v3/testsuite/23_containers/deque/modifiers/emplace/co [...] create mode 100644 libstdc++-v3/testsuite/23_containers/list/modifiers/emplace/1.cc delete mode 100644 libstdc++-v3/testsuite/23_containers/list/modifiers/emplace/52799.cc delete mode 100644 libstdc++-v3/testsuite/23_containers/list/modifiers/emplace/con [...] create mode 100644 libstdc++-v3/testsuite/23_containers/vector/modifiers/emplace/1.cc delete mode 100644 libstdc++-v3/testsuite/23_containers/vector/modifiers/emplace/52799.cc delete mode 100644 libstdc++-v3/testsuite/23_containers/vector/modifiers/emplace/c [...]