[gcc r16-4096] Daily bump.

GCC Administrator gccadmin@gcc.gnu.org
Fri Sep 26 00:20:51 GMT 2025


https://gcc.gnu.org/g:11a662dd8bc2d6fb28c584104a1fdd17e78701ae

commit r16-4096-g11a662dd8bc2d6fb28c584104a1fdd17e78701ae
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Fri Sep 26 00:20:03 2025 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 17 +++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/cp/ChangeLog        |  7 +++++++
 gcc/fortran/ChangeLog   |  6 ++++++
 gcc/testsuite/ChangeLog |  6 ++++++
 libgcc/ChangeLog        |  4 ++++
 libstdc++-v3/ChangeLog  | 29 +++++++++++++++++++++++++++++
 7 files changed, 70 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b010b212805d..e0a7c643264a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,20 @@
+2025-09-25  Gerald Pfeifer  <gerald@pfeifer.com>
+
+	* 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  <gerald@pfeifer.com>
+
+	* doc/extend.texi (Vector Extensions): Fix grammar.
+
+2025-09-25  Xi Ruoyao  <xry111@xry111.site>
+
+	* doc/invoke.texi (-ffp-int-builtin-inexact): Reword to match
+	the default value with the default C standard.
+
 2025-09-24  Dusan Stojkovic  <Dusan.Stojkovic@rt-rk.com>
 
 	PR target/121778
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 1c24425e59bb..021949afc4f6 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20250925
+20250926
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 32aa83965494..60ff8699b9af 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,10 @@
+2025-09-25  Nathaniel Shead  <nathanieloshead@gmail.com>
+
+	PR c++/122015
+	PR c++/122019
+	* module.cc (trees_in::install_entity): Remove incorrect
+	assertion.
+
 2025-09-24  Nathaniel Shead  <nathanieloshead@gmail.com>
 
 	PR c++/122019
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index be89f51a1f26..68842d61811f 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,9 @@
+2025-09-25  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/121939
+	* trans-types.cc (gfc_init_types): Set string flag for all
+	character types.
+
 2025-09-24  Mikael Morin  <morin-mikael@orange.fr>
 
 	PR fortran/122046
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index ef8943a5f93c..16403e26a365 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2025-09-25  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/121939
+	* gfortran.dg/deferred_character_39.f90: Disable temporary
+	workaround for character(kind=4) deferred-length bug.
+
 2025-09-24  Dusan Stojkovic  <Dusan.Stojkovic@rt-rk.com>
 
 	PR target/121778
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index 5b6dbf57a141..7e401bb1619d 100644
--- a/libgcc/ChangeLog
+++ b/libgcc/ChangeLog
@@ -1,3 +1,7 @@
+2025-09-25  John David Anglin  <danglin@gcc.gnu.org>
+
+	* config/pa/sync-libfuncs.c (atomic_store_8): Fix asm.
+
 2025-09-19  Jim Lin  <jim@andestech.com>
 
 	* config/riscv/save-restore.S: Only save/restore the registers
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 18027b718fbb..a3ee448c6af0 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,32 @@
+2025-09-25  Luc Grosheintz  <luc.grosheintz@gmail.com>
+
+	* include/std/mdspan (__static_quotient): New overload.
+
+2025-09-25  Jonathan Wakely  <jwakely@redhat.com>
+
+	* 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  <jwakely@redhat.com>
+
+	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  <luc.grosheintz@gmail.com>
+
+	* 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  <luc.grosheintz@gmail.com>
 	    Tomasz Kamiński  <tkaminsk@redhat.com>


More information about the Libstdc++-cvs mailing list