]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 16 Sep 2024 00:17:42 +0000 (00:17 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 16 Sep 2024 00:17:42 +0000 (00:17 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/fortran/ChangeLog
gcc/testsuite/ChangeLog
libstdc++-v3/ChangeLog

index 4d490a492c18221d947d633727600fc870464d64..d5ed0e9d3a92bbef28caf06e6259989aaf6bc5cf 100644 (file)
@@ -1,3 +1,19 @@
+2024-09-15  Andrew Pinski  <quic_apinski@quicinc.com>
+
+       PR tree-optimization/116699
+       * tree-ssa-phiopt.cc (factor_out_conditional_operation): Skip over nop/predicates
+       for seeing the assignment is the last statement.
+
+2024-09-15  Andrew Pinski  <quic_apinski@quicinc.com>
+
+       * tree-vect-loop.cc (optimize_mask_stores): Call release_defs
+       after the call to gsi_remove with last argument of true.
+
+2024-09-15  Andrew Pinski  <quic_apinski@quicinc.com>
+
+       * bitmap.h (class auto_bitmap): Mark copy/move constructor/operator=
+       as deleted.
+
 2024-09-14  Georg-Johann Lay  <avr@gjlay.de>
 
        * config/avr/avr.md (UNSPEC_COPYSIGN): Remove define_enum.
index 5cbbe5defc0cf8f0648f75ebe395def3a3122f63..657376e57792eda82009d76529ce4e2db2b40217 100644 (file)
@@ -1 +1 @@
-20240915
+20240916
index 5f590a3e4a25c460780b681ece1f9f36330b5f04..847e3f9b1c05129a2fceb0c9a958e12d07f92fb3 100644 (file)
@@ -1,3 +1,22 @@
+2024-09-15  Jason Merrill  <jason@redhat.com>
+
+       * parser.cc (cp_parser_unary_expression) [RID_EXTENSION]: Also
+       suppress -Wconditionally-supported.
+
+2024-09-15  Jason Merrill  <jason@redhat.com>
+
+       * call.cc (convert_like_internal) [ck_user]: Use iloc_sentinel.
+
+2024-09-15  Iain Sandoe  <iain@sandoe.co.uk>
+
+       PR c++/115905
+       * coroutines.cc (struct coro_aw_data): Add a member for the
+       restart dispatch label.
+       (expand_one_await_expression): Rework to modernise and to
+       handle the boolean await_suspend() case.
+       (build_actor_fn): Rework the dispatcher and allow for a jump
+       back to the dispatcher.
+
 2024-09-14  Jason Merrill  <jason@redhat.com>
 
        * tree.cc (handle_init_priority_attribute): Check
index 654dee7b9e46dec5d28e60a164088489e11e6aed..1243ffad68bb267c58d00aacf840749978b9822c 100644 (file)
@@ -1,3 +1,9 @@
+2024-09-15  Mikael Morin  <mikael@gcc.gnu.org>
+
+       * trans-expr.cc (gfc_advance_se_ss_chain): Don't use an element
+       from the parent scalarization chain when the current chain reaches
+       its end.
+
 2024-09-13  Tobias Burnus  <tburnus@baylibre.com>
 
        PR fortran/116661
index df44a0a04e0d0382b364899a3a051fe187a07bb7..92636b9550cdddec4d05ac9dc0956c5a7fa4384b 100644 (file)
@@ -1,3 +1,21 @@
+2024-09-15  Jason Merrill  <jason@redhat.com>
+
+       * g++.dg/warn/Wconditionally-supported-1.C: Add __extension__ cases.
+
+2024-09-15  Jason Merrill  <jason@redhat.com>
+
+       * g++.dg/cpp2a/srcloc17.C: Adjust initialization.
+
+2024-09-15  Iain Sandoe  <iain@sandoe.co.uk>
+
+       PR c++/115905
+       * g++.dg/coroutines/torture/pr115905.C: New test.
+
+2024-09-15  Andrew Pinski  <quic_apinski@quicinc.com>
+
+       PR tree-optimization/116699
+       * gcc.dg/tree-ssa/phi-opt-factor-1.c: New test.
+
 2024-09-14  Andrew Pinski  <quic_apinski@quicinc.com>
 
        PR testsuite/116716
index d6f33fef1d92f24bdb7899794899092ded7e9097..23a562d0442132af9d9e8a7ad7e9e722b162b4a9 100644 (file)
@@ -1,3 +1,38 @@
+2024-09-15  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/std/span (span::__iter_tag): Declare nested type.
+       (span::iterator): Use __iter_tag as second template argument.
+       * include/std/stacktrace (basic_stacktrace::iterator): Use _Impl
+       as second template argument.
+
+2024-09-15  Jonathan Wakely  <jwakely@redhat.com>
+
+       * doc/xml/manual/using.xml (_GLIBCXX_NO_FREESTANDING_CHRONO):
+       Document macro.
+       * doc/html/*: Regenerate.
+       * include/bits/chrono.h [_GLIBCXX_NO_FREESTANDING_CHRONO]:
+       Only include <bits/require_hosted.h> when this macro is defined.
+       [_GLIBCXX_HOSTED]: Only define clocks for hosted.
+       * include/bits/version.def (chrono_udls): Remove hosted=yes.
+       * include/bits/version.h: Regenerate.
+       * include/std/chrono [_GLIBCXX_HOSTED]: Only define clocks and
+       time zone utilities for hosted.
+       * testsuite/std/time/freestanding.cc: New test.
+
+2024-09-15  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/bits/locale_classes.h (__is_facet): New helper.
+       * include/bits/locale_classes.tcc (locale::combine): Check that
+       _Facet type is valid.
+
+2024-09-15  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/110512
+       * include/pstl/execution_impl.h (__are_random_access_iterators):
+       Recognize C++20 random access iterators, and use more efficient
+       implementations.
+       * testsuite/25_algorithms/pstl/110512.cc: New test.
+
 2024-09-14  Jonathan Wakely  <jwakely@redhat.com>
 
        * include/std/format (__formatter_fp::_M_localize): Add comments