From: GCC Administrator Date: Fri, 21 Apr 2023 00:21:40 +0000 (+0000) Subject: Daily bump. X-Git-Tag: releases/gcc-12.3.0~57 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=861b252088c551dc1ea6f5988dc0b24419f984da;p=thirdparty%2Fgcc.git Daily bump. --- diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 758629bff2e6..1bf412b8655b 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20230420 +20230421 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index c2b9a2588164..f728925d4ef9 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,11 @@ +2023-04-20 Jason Merrill + + Revert: + 2023-04-18 Jason Merrill + + PR c++/108099 + * decl.cc (grokdeclarator): Handle non-typedef typedef_decl. + 2023-04-19 Jason Merrill PR c++/108099 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 76c155158705..bd3864d00485 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,20 @@ +2023-04-20 Jason Merrill + + Revert: + 2023-04-20 Jason Merrill + + PR c++/108099 + * g++.dg/ext/int128-7.C: New test. + +2023-04-20 Jakub Jelinek + + Backported from master: + 2023-04-20 Jakub Jelinek + + PR c++/108099 + PR testsuite/109560 + * g++.dg/ext/int128-8.C: Require int128 effective target. + 2023-04-19 Jason Merrill PR c++/108099 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index fdc555c6a04c..0133afdf5ed6 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,82 @@ +2023-04-20 Jonathan Wakely + + Backported from master: + 2022-11-29 Jonathan Wakely + + PR libstdc++/107852 + PR libstdc++/106199 + PR libstdc++/100366 + * include/bits/vector.tcc (vector::_M_fill_insert): Copy + _M_start and _M_finish members before allocating. + (vector::_M_default_append): Likewise. + (vector::_M_range_insert): Likewise. + +2023-04-20 Jonathan Wakely + + Backported from master: + 2023-04-04 Jonathan Wakely + + * doc/xml/manual/extensions.xml: Remove std::bad_exception from + example program. + * doc/html/manual/ext_demangling.html: Regenerate. + +2023-04-20 Jonathan Wakely + + Backported from master: + 2023-04-05 Jonathan Wakely + + * include/bits/regex.h (sub_match::swap): New function. + * testsuite/28_regex/sub_match/lwg3204.cc: New test. + +2023-04-20 Jonathan Wakely + + Backported from master: + 2023-03-28 Jonathan Wakely + + PR libstdc++/103387 + * include/bits/istream.tcc (istream::_M_extract(ValueT&)): Use + std::use_facet instead of cached _M_num_get facet. + (istream::operator>>(short&)): Likewise. + (istream::operator>>(int&)): Likewise. + * include/bits/ostream.tcc (ostream::_M_insert(ValueT)): Use + std::use_facet instead of cached _M_num_put facet. + +2023-04-20 Jonathan Wakely + + Backported from master: + 2023-01-15 Jonathan Wakely + + * testsuite/30_threads/jthread/jthread.cc: Remove -pthread from + dg-options. + +2023-04-20 Jonathan Wakely + + Backported from master: + 2023-03-22 Jonathan Wakely + + * include/bits/shared_ptr_atomic.h (atomic::operator=(nullptr_t)): + Add overload, as per LWG 3893. + * testsuite/20_util/shared_ptr/atomic/atomic_shared_ptr.cc: + Check assignment from nullptr. + +2023-04-20 Jonathan Wakely + + Backported from master: + 2023-03-29 Jonathan Wakely + + * include/std/expected (expected::value() &): Use const lvalue + for unex member passed to bad_expected_access constructor, as + per LWG 3843. + +2023-04-20 Jonathan Wakely + + Backported from master: + 2023-02-02 Jonathan Wakely + + * include/std/variant (variant::operator=): Implement resolution + of LWG 3585. + * testsuite/20_util/variant/lwg3585.cc: New test. + 2023-04-12 Patrick Palka Backported from master: