https://gcc.gnu.org/g:9b7f14149b2e22dbcebe93a499173ae416297abe
commit r16-5101-g9b7f14149b2e22dbcebe93a499173ae416297abe Author: GCC Administrator <[email protected]> Date: Sun Nov 9 00:19:46 2025 +0000 Daily bump. Diff: --- gcc/ChangeLog | 27 +++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 9 +++++++++ gcc/fortran/ChangeLog | 15 +++++++++++++++ gcc/testsuite/ChangeLog | 36 ++++++++++++++++++++++++++++++++++++ libgfortran/ChangeLog | 7 +++++++ 6 files changed, 95 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index af2cebbd1845..ad0ebb95e2c2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,30 @@ +2025-11-08 Avinash Jayakar <[email protected]> + + PR tree-optimization/122126 + * gimple-isel.cc (gimple_expand_vec_set_extract_expr): Add bound check. + +2025-11-08 Lulu Cheng <[email protected]> + + PR target/122097 + * config/loongarch/loongarch.cc + (loongarch_const_vector_same_bytes_p): Add processing for + floating-point vector data. + +2025-11-08 Avinash Jayakar <[email protected]> + + PR tree-optimization/122065 + * tree-vect-generic.cc (target_supports_mult_synth_alg): Add helper to + check mult synth. + (expand_vector_mult): Optimize mult when const is uniform but not + power of 2. + +2025-11-08 Andrew Pinski <[email protected]> + + PR tree-optimization/122599 + * tree-scalar-evolution.cc (final_value_replacement_loop): Move + the removal of the phi until after the gimplification of the final + value expression. + 2025-11-07 David Malcolm <[email protected]> * gdbhooks.py (class AnaSupernodePrinter): New. diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index d4a901df8bef..3f9d6e815c20 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20251108 +20251109 diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 7ffbe3a578db..cc764c486e06 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,12 @@ +2025-11-08 Eric Botcazou <[email protected]> + + PR ada/34374 + * sem_ch10.adb (Check_Private_Limited_Withed_Unit): Use a separate + variable for the private child unit, streamline the loop locating + the nearest private ancestor, fix a too early termination of the + loop traversing the ancestor of the current unit, and use the same + privacy test as Check_Private_Child_Unit. + 2025-11-07 Eric Botcazou <[email protected]> PR ada/83188 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 6ddba0bc0db1..081bc1f4adae 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,18 @@ +2025-11-08 Harald Anlauf <[email protected]> + + PR fortran/113338 + * decl.cc (gfc_verify_c_interop_param): Allow further types of + dummy argument without the VALUE attribute as specified in + F2018 18.3.6 item (5). + +2025-11-08 Jerry DeLisle <[email protected]> + + PR fortran/121628 + * trans-array.cc (seen_derived_types): Move to file scope and + preserve/restore around generate_element_copy_wrapper. + * trans-intrinsic.cc (conv_intrinsic_atomic_op): Reuse + gfc_trans_force_lval when forcing addressable CAF temps. + 2025-11-06 Jerry DeLisle <[email protected]> PR fortran/121628 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index cb8b32215e26..ee218b17350c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,39 @@ +2025-11-08 Eric Botcazou <[email protected]> + + * gnat.dg/specs/limited_with4.ads: Rename to... + * gnat.dg/specs/limited_with1.ads: ...this. + * gnat.dg/specs/limited_with4_pkg.ads: Rename to... + * gnat.dg/specs/limited_with1_pkg.ads: ...this. + * gnat.dg/specs/limited_with2-child1.ads: New test. + * gnat.dg/specs/limited_with2-child2.ads: Likewise. + * gnat.dg/specs/limited_with2.ads: New helper. + +2025-11-08 Philipp Tomsich <[email protected]> + + * gcc.target/riscv/snez.c: New test. + +2025-11-08 Harald Anlauf <[email protected]> + + PR fortran/113338 + * gfortran.dg/c-interop/pr113338-c.c: New test. + * gfortran.dg/c-interop/pr113338.f90: New test. + +2025-11-08 Avinash Jayakar <[email protected]> + + PR tree-optimization/122126 + * gcc.dg/pr122126_vextr.c: New test. + * gcc.dg/pr122126_vset.c: New test. + +2025-11-08 Jerry DeLisle <[email protected]> + + PR fortran/121628 + * gfortran.dg/alloc_comp_deep_copy_7.f90: New test. + +2025-11-08 Andrew Pinski <[email protected]> + + PR tree-optimization/122599 + * gcc.dg/torture/pr122599-1.c: New test. + 2025-11-07 Andrew Pinski <[email protected]> PR tree-optimization/122588 diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index b02f8d2b478b..a8d7f075f1d9 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,10 @@ +2025-11-08 Jerry DeLisle <[email protected]> + + PR fortran/121628 + * Makefile.in: Keep continuation indentation within 80 columns. + * aclocal.m4: Regenerate. + * libgfortran.h: Drop unused forward declaration. + 2025-11-06 Jerry DeLisle <[email protected]> PR fortran/121628
