]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Sat, 14 Jun 2025 00:17:58 +0000 (00:17 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Sat, 14 Jun 2025 00:17:58 +0000 (00:17 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/testsuite/ChangeLog
libstdc++-v3/ChangeLog

index 549505eae3f744f99e23e05a9577bdd879d06d34..ad1a0c19e1401e1ee07b11e72a7ffc1f6d0138c6 100644 (file)
@@ -1,3 +1,35 @@
+2025-06-13  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/120629
+       * cfgexpand.cc (expand_split_edge): New function.
+       (expand_gimple_cond, construct_init_block): Use it.
+
+2025-06-13  Spencer Abson  <spencer.abson@arm.com>
+
+       PR target/118150
+       * config/aarch64/aarch64-sve.md (*one_cmpl<mode>3_cc): New
+       combiner pattern.
+       (*one_cmpl<mode>3_ptest): Likewise.
+
+2025-06-13  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/120629
+       * cfgexpand.cc (construct_init_block): If first_block isn't BB_RTL,
+       has any PHI nodes and false_edge->dest_idx before redirection is
+       different from make_single_succ_edge result's dest_idx, swap the
+       latter with the former last pred edge and their dest_idx members.
+
+2025-06-13  Kito Cheng  <kito.cheng@sifive.com>
+
+       * gcc.cc (driver::set_up_specs): Use gcc_exec_prefix to
+       read the spec file rather than standard_exec_prefix.
+
+2025-06-13  H.J. Lu  <hjl.tools@gmail.com>
+
+       PR target/120589
+       * config/mcore/mcore.cc (mcore_mark_dllimport): Don't use
+       gen_rtx_MEM.
+
 2025-06-12  Jakub Jelinek  <jakub@redhat.com>
 
        PR tree-optimization/120638
index c544224c34481e1fc46e58f840285bd4a1d95e5a..b440a372cfd181c02232bd47b0dff762caecab07 100644 (file)
@@ -1 +1 @@
-20250613
+20250614
index 842f74d89f6a453267ed64d7dcab58122a54c28e..00280820193ec73b294365861482f0d5332740c9 100644 (file)
@@ -1,3 +1,15 @@
+2025-06-13  Iain Sandoe  <iain@sandoe.co.uk>
+
+       PR c++/116775
+       * coroutines.cc (analyze_expression_awaits): When we see
+       a builtin_constant_p call, and that contains one or more
+       await expressions, then replace the call with its result
+       and discard the unevaluated operand.
+
+2025-06-13  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * coroutines.cc (build_actor_fn): Set can_throw.
+
 2025-06-12  Alfie Richards  <alfie.richards@arm.com>
 
        * decl.cc (maybe_version_functions): Change record_function_versions
index 80cc66448bae5e2fe50b453fbef84b37927a8e56..2936817425b15a76d76f1e0a49d1db285d55a2df 100644 (file)
@@ -1,3 +1,20 @@
+2025-06-13  Iain Sandoe  <iain@sandoe.co.uk>
+
+       PR c++/116775
+       * g++.dg/coroutines/pr116775.C: New test.
+
+2025-06-13  Spencer Abson  <spencer.abson@arm.com>
+
+       PR target/118150
+       * gcc.target/aarch64/sve/acle/general/not_1.c: New test.
+
+2025-06-13  Konstantinos Eleftheriou  <konstantinos.eleftheriou@vrull.eu>
+
+       PR testsuite/119862
+       * gcc.dg/pr119160.c: Added empty definitions for
+       `__cyg_profile_func_enter` and `__cyg_profile_func_exit`
+       functions.
+
 2025-06-12  Jakub Jelinek  <jakub@redhat.com>
 
        PR tree-optimization/120638
index 8873fa42b635c6107d904de0f144023656c74966..deb3c24b47847604b96763f7b730bf09b43bfcb0 100644 (file)
@@ -1,3 +1,78 @@
+2025-06-13  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/120397
+       * include/bits/stl_uninitialized.h (_UninitDestroyGuard<I,void>):
+       Add new member function _S_destroy and call it from the
+       destructor (for C++17 only).
+       * testsuite/20_util/specialized_algorithms/uninitialized_default_construct/120397.cc:
+       New test.
+       * testsuite/20_util/specialized_algorithms/uninitialized_value_construct/120397.cc:
+       New test.
+
+2025-06-13  Tomasz Kamiński  <tkaminsk@redhat.com>
+
+       PR libstdc++/120648
+       * include/bits/chrono_io.h (__formatter_chrono::_M_format_to):
+       Handle %c, %r, %x and %X by passing them to _M_c_r_x_X.
+       (__formatter_chrono::_M_c_r_x_X): Reworked from _M_c.
+       (__formatter_chrono::_M_c): Renamed into above.
+       (__formatter_chrono::_M_r, __formatter_chrono::_M_x)
+       (__formatter_chrono::_M_X): Removed.
+       * testsuite/std/time/format/pr117214.cc: New tests for %r, %x,
+       %X with date, time and durations.
+
+2025-06-13  Patrick Palka  <ppalka@redhat.com>
+
+       * include/bits/ranges_algo.h (__detail::__by_ref_or_value_fn): New.
+       (__detail::_Comp_proj): New.
+       (__detail::__make_comp_proj): Use it instead.
+       (__detail::_Pred_proj): New.
+       (__detail::__make_pred_proj): Use it instead.
+
+2025-06-13  Giuseppe D'Angelo  <giuseppe.dangelo@kdab.com>
+
+       PR c++/120644
+       * include/std/optional (format_kind): Do not use `auto`.
+
+2025-06-13  Tomasz Kamiński  <tkaminsk@redhat.com>
+
+       * testsuite/23_containers/vector/bool/format.cc: Replaced _CharT
+       with CharT.
+       * testsuite/std/format/debug.cc: Likewise.
+       * testsuite/std/format/ranges/adaptors.cc: Likewise.
+       * testsuite/std/format/ranges/formatter.cc: Likewise.
+       * testsuite/std/format/ranges/map.cc: Likewise.
+       * testsuite/std/format/ranges/sequence.cc: Likewise.
+       * testsuite/std/format/ranges/string.cc: Likewise.
+       * testsuite/std/format/tuple.cc: Likewise.
+       * testsuite/std/time/format/empty_spec.cc: Likewise.
+       * testsuite/std/time/format/pr120114.cc: Likewise.
+       * testsuite/std/time/format/pr120481.cc: Likewise.
+       * testsuite/std/time/format/precision.cc: Likewise.
+
+2025-06-13  Tomasz Kamiński  <tkaminsk@redhat.com>
+
+       * include/bits/chrono_io.h (__formatter_chrono::_M_format):
+       Remove handling of empty _M_chrono_specs.
+       (__formatter_chrono::_M_format_to_ostream): Changed to accept
+       only chrono::duration and made public.
+       (std::formatter<chrono::duration<_Rep, _Period>, _CharT>):
+       Configure __defSpec and handle empty chrono-spec locally.
+
+2025-06-13  Tomasz Kamiński  <tkaminsk@redhat.com>
+
+       * include/bits/chrono_io.h (__format::__formatter_chrono_info)
+       [_GLIBCXX_USE_CXX11_ABI || ! _GLIBCXX_USE_DUAL_ABI]: Define.
+       (std::formatter<chrono::sys_info, _CharT>)
+       (std::formatter<chrono::local_inf, _CharT>): Delegate to
+       __format::__formatter_chrono_info.
+       (std::operator<<(basic_ostream<_CharT, _Traits>& const sys_info&)):
+       Use format on sys_info with empty format spec.
+
+2025-06-13  Tomasz Kamiński  <tkaminsk@redhat.com>
+
+       * testsuite/std/time/format/whitespace.cc: New test.
+
 2025-06-12  Giuseppe D'Angelo  <giuseppe.dangelo@kdab.com>
 
        PR libstdc++/119496