Daily bump.

This commit is contained in:
GCC Administrator 2025-09-26 00:20:03 +00:00
parent 505c139c58
commit 11a662dd8b
7 changed files with 70 additions and 1 deletions

View File

@ -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

View File

@ -1 +1 @@
20250925
20250926

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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>