From: GCC Administrator Date: Fri, 26 Sep 2025 00:20:03 +0000 (+0000) Subject: Daily bump. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=11a662dd8bc2d6fb28c584104a1fdd17e78701ae;p=thirdparty%2Fgcc.git Daily bump. --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b010b212805..e0a7c643264 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,20 @@ +2025-09-25 Gerald Pfeifer + + * doc/invoke.texi (Warning Options): Use "bitwise" over + "bit-wise". + * doc/extend.texi (Vector Extensions): Use "elementwise" + over "element-wise". + * doc/md.texi (Standard Names): Ditto. + +2025-09-25 Gerald Pfeifer + + * doc/extend.texi (Vector Extensions): Fix grammar. + +2025-09-25 Xi Ruoyao + + * doc/invoke.texi (-ffp-int-builtin-inexact): Reword to match + the default value with the default C standard. + 2025-09-24 Dusan Stojkovic PR target/121778 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 1c24425e59b..021949afc4f 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20250925 +20250926 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 32aa8396549..60ff8699b9a 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,10 @@ +2025-09-25 Nathaniel Shead + + PR c++/122015 + PR c++/122019 + * module.cc (trees_in::install_entity): Remove incorrect + assertion. + 2025-09-24 Nathaniel Shead PR c++/122019 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index be89f51a1f2..68842d61811 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2025-09-25 Harald Anlauf + + PR fortran/121939 + * trans-types.cc (gfc_init_types): Set string flag for all + character types. + 2025-09-24 Mikael Morin PR fortran/122046 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ef8943a5f93..16403e26a36 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2025-09-25 Harald Anlauf + + PR fortran/121939 + * gfortran.dg/deferred_character_39.f90: Disable temporary + workaround for character(kind=4) deferred-length bug. + 2025-09-24 Dusan Stojkovic PR target/121778 diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 5b6dbf57a14..7e401bb1619 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,7 @@ +2025-09-25 John David Anglin + + * config/pa/sync-libfuncs.c (atomic_store_8): Fix asm. + 2025-09-19 Jim Lin * config/riscv/save-restore.S: Only save/restore the registers diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 18027b718fb..a3ee448c6af 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,32 @@ +2025-09-25 Luc Grosheintz + + * include/std/mdspan (__static_quotient): New overload. + +2025-09-25 Jonathan Wakely + + * include/bits/stl_algo.h: Check robust_nonmodifying_seq_ops + feature test macro instead of checking __cplusplus value. Add + comment to another __cplusplus check. + * include/bits/stl_algobase.h: Add comment to #endif. + +2025-09-25 Jonathan Wakely + + PR libstdc++/79147 + PR libstdc++/103650 + * include/Makefile.am (c++config.h): Adjust sed command to + comment out STDC_HEADERS macro. + * include/Makefile.in: Regenerate. + +2025-09-25 Luc Grosheintz + + * testsuite/23_containers/mdspan/layouts/empty.cc: Fix indent. + * testsuite/23_containers/mdspan/layouts/mapping.cc + (test_stride_1d): Fix test. + (test_stride_2d): Rewrite using a struct. + (test_stride_3d): Ditto. + (has_static_is_exhaustive): New concept. + (test_mapping_properties): Update test. + 2025-09-24 Luc Grosheintz Tomasz Kamiński