https://gcc.gnu.org/g:7b56621cd074054211e90b337f8763fe7b5628ff

commit r15-10191-g7b56621cd074054211e90b337f8763fe7b5628ff
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Sat Aug 2 00:26:22 2025 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 37 +++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/c/ChangeLog         | 18 ++++++++++++++++++
 gcc/cp/ChangeLog        | 19 +++++++++++++++++++
 gcc/po/ChangeLog        |  4 ++++
 gcc/testsuite/ChangeLog | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 6 files changed, 127 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 30751bdea4f5..fd022ad415bf 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,40 @@
+2025-08-01  Richard Earnshaw  <rearn...@arm.com>
+
+       Backported from master:
+       2025-05-19  Richard Earnshaw  <rearn...@arm.com>
+
+       PR target/120351
+       * config/arm/predicates.md (mem_noofs_operand): Also check the op
+       is a valid memory_operand.
+
+2025-08-01  Richard Biener  <rguent...@suse.de>
+
+       Backported from master:
+       2025-07-31  Richard Biener  <rguent...@suse.de>
+
+       PR tree-optimization/121323
+       * tree-ssa-alias.cc (ao_ref_init_from_ptr_and_range): Check
+       the pointer offset fits in a HWI when represented in bits.
+
+2025-08-01  Richard Biener  <rguent...@suse.de>
+
+       Backported from master:
+       2025-07-31  Richard Biener  <rguent...@suse.de>
+
+       PR tree-optimization/121320
+       * tree-ssa-sccvn.cc (ao_ref_init_from_vn_reference): Convert
+       op->off to poly_offset_int before multiplying by
+       BITS_PER_UNIT.
+
+2025-08-01  Jakub Jelinek  <ja...@redhat.com>
+
+       Backported from master:
+       2025-08-01  Jakub Jelinek  <ja...@redhat.com>
+
+       PR middle-end/121322
+       * gimple-ssa-store-merging.cc (find_bswap_or_nop): Return NULL if
+       count is 0.
+
 2025-07-31  Georg-Johann Lay  <a...@gjlay.de>
 
        Backported from master:
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index d0a9040db41e..cb7ccb31b924 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20250801
+20250802
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index d0643d76ff82..78da57c4942e 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,21 @@
+2025-08-01  Florian Weimer  <fwei...@redhat.com>
+
+       Backported from master:
+       2025-05-02  Florian Weimer  <fwei...@redhat.com>
+
+       PR c/120055
+       * c-typeck.cc (convert_arguments): Check if fundecl is null
+       before checking for builtin function declaration.
+
+2025-08-01  Florian Weimer  <fwei...@redhat.com>
+
+       Backported from master:
+       2025-05-01  Florian Weimer  <fwei...@redhat.com>
+
+       PR c/119950
+       * c-typeck.cc (convert_arguments): Check for built-in
+       function declaration before warning.
+
 2025-07-30  Qing Zhao  <qing.z...@oracle.com>
 
        Backported from master:
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 273312387adf..edad08481e7f 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,22 @@
+2025-08-01  Nathaniel Shead  <nathanielosh...@gmail.com>
+
+       Backported from master:
+       2025-08-01  Nathaniel Shead  <nathanielosh...@gmail.com>
+
+       PR c++/108080
+       * module.cc (trees_out::core_vals): Warn when streaming
+       target/optimize node; adjust comments.
+       (trees_in::core_vals): Don't stream a target/optimize node.
+
+2025-08-01  Nathaniel Shead  <nathanielosh...@gmail.com>
+
+       Backported from master:
+       2025-08-01  Nathaniel Shead  <nathanielosh...@gmail.com>
+
+       PR c++/121238
+       * module.cc (trees_in::fn_parms_fini): Merge properties for
+       definitions.
+
 2025-07-31  Jason Merrill  <ja...@redhat.com>
 
        Backported from master:
diff --git a/gcc/po/ChangeLog b/gcc/po/ChangeLog
index 3bfcf33bbbf8..156490eb2cf3 100644
--- a/gcc/po/ChangeLog
+++ b/gcc/po/ChangeLog
@@ -1,3 +1,7 @@
+2025-08-01  Joseph Myers  <josmy...@redhat.com>
+
+       * gcc.pot: Regenerate.
+
 2025-06-12  Joseph Myers  <josmy...@redhat.com>
 
        * es.po: Update.
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 7f4063330bca..0a6b1871e8d7 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,51 @@
+2025-08-01  Richard Earnshaw  <rearn...@arm.com>
+
+       Backported from master:
+       2025-05-19  Richard Earnshaw  <rearn...@arm.com>
+
+       PR target/120351
+       * gcc.target/arm/pr120351.c: New test.
+
+2025-08-01  Florian Weimer  <fwei...@redhat.com>
+
+       Backported from master:
+       2025-05-02  Florian Weimer  <fwei...@redhat.com>
+
+       * gcc.dg/Wdeprecated-non-prototype-6.c: New test.
+
+2025-08-01  Florian Weimer  <fwei...@redhat.com>
+
+       Backported from master:
+       2025-05-01  Florian Weimer  <fwei...@redhat.com>
+
+       * gcc.dg/Wdeprecated-non-prototype-5.c: New test.
+
+2025-08-01  Jakub Jelinek  <ja...@redhat.com>
+
+       Backported from master:
+       2025-08-01  Jakub Jelinek  <ja...@redhat.com>
+
+       PR middle-end/121322
+       * gcc.dg/pr121322.c: New test.
+
+2025-08-01  Nathaniel Shead  <nathanielosh...@gmail.com>
+
+       Backported from master:
+       2025-08-01  Nathaniel Shead  <nathanielosh...@gmail.com>
+
+       PR c++/108080
+       * g++.dg/modules/pr108080.H: New test.
+
+2025-08-01  Nathaniel Shead  <nathanielosh...@gmail.com>
+
+       Backported from master:
+       2025-08-01  Nathaniel Shead  <nathanielosh...@gmail.com>
+
+       PR c++/121238
+       * g++.dg/modules/merge-19.h: New test.
+       * g++.dg/modules/merge-19_a.H: New test.
+       * g++.dg/modules/merge-19_b.C: New test.
+
 2025-07-31  Jason Merrill  <ja...@redhat.com>
 
        Backported from master:

Reply via email to