Daily bump.

This commit is contained in:
GCC Administrator 2025-10-02 00:19:36 +00:00
parent ef45d6489f
commit 790bbb9ca6
11 changed files with 185 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2025-10-01 Richard Earnshaw <rearnsha@arm.com>
* .editorconfig: Unify the GCC and GDB/binutils root config.
2025-09-23 Richard Earnshaw <rearnsha@arm.com>
* .editorconfig: Fix glob patterns.

View File

@ -1,3 +1,65 @@
2025-10-01 Jeff Law <jlaw@ventanamicro.com>
PR target/122106
* config/riscv/bitmanip.md (crc expanders): Add predicate for
polynomial argument. Drop unnecessary constraints.
2025-10-01 Andreas Schwab <schwab@linux-m68k.org>
PR target/122066
* config/m68k/m68k.md (adddi3, subdi3): Strip POST_INC and PRE_DEC
when generating high part of the destination operand.
2025-10-01 Jan Hubicka <hubicka@ucw.cz>
* auto-profile.cc (afdo_calculate_branch_prob): Improve dump file.
2025-10-01 Jan Hubicka <hubicka@ucw.cz>
* auto-profile.cc (determine_scale): Break out from ...
(afdo_adjust_guessed_profile): ... here.
(scale_bb_profile): New function.
(afdo_annotate_cfg): Use it.
* params.opt (auto-profile-bbs): New parmaeter.
* doc/invoke.texi (auto-profile-bbs): Document.
2025-10-01 Jan Hubicka <hubicka@ucw.cz>
* auto-profile.cc (afdo_unscaled_edge_count): New function based on
part of ...
(afdo_set_bb_count): ... this function; use it here.
(afdo_calculate_branch_prob): Try to determine edge counts using
phi args and goto locuses.
2025-10-01 Jan Hubicka <hubicka@ucw.cz>
* Makefile.in (ALL_FDAS): New variable.
(ALL_HOST_BACKEND_OBJ): Use all.fda instead of cc1plus.fda
(all.fda): New target
2025-10-01 Jan Hubicka <hubicka@ucw.cz>
* cfghooks.cc (merge_blocks): Choose more reliable or higher BB
count.
2025-10-01 Jan Hubicka <hubicka@ucw.cz>
* predict.cc (unlikely_executed_stmt_p): Remove redundant check.
(rebuild_frequencies): Also recompute unlikely bbs when profile is
present or consistent.
2025-10-01 Andrew MacLeod <amacleod@redhat.com>
PR tree-optimization/120560
* vr-values.cc (range_from_loop_direction): Use wi::ge_p rather
than wi::gt_p.
2025-10-01 Richard Biener <rguenther@suse.de>
PR tree-optimization/122110
* tree-vect-loop.cc (vectorizable_reduction): Relax restriction
to mode-precision operations.
2025-09-30 David Malcolm <dmalcolm@redhat.com>
* diagnostics/output-spec.cc (text_scheme_handler::make_sink): Use

View File

@ -1 +1 @@
20251001
20251002

View File

@ -1,3 +1,7 @@
2025-10-01 Alejandro Colomar <alx@kernel.org>
* c.opt.urls: Regenerate
2025-09-26 Alejandro Colomar <alx@kernel.org>
* c.opt: Add -Wmultiple-parameter-fwd-decl-lists

View File

@ -1,3 +1,8 @@
2025-10-01 Jan Hubicka <hubicka@ucw.cz>
* Make-lang.in: Add c_FDAS
(create_fdas_for_cc1): Be sure that build fails if create_gcov fails.
2025-09-30 Martin Uecker <uecker@tugraz.at>
PR target/121933

View File

@ -1,3 +1,15 @@
2025-10-01 Iain Sandoe <iain@sandoe.co.uk>
* constexpr.cc (cxx_eval_constant_expression): Use revised
interfaces to determine if contracts are ignored and, if not,
whether they are evaluated.
* contracts.h (contract_ignored_p, contract_evaluated_p): New.
2025-10-01 Jan Hubicka <hubicka@ucw.cz>
* Make-lang.in: Add c++_FDAS
(create_fdas_for_cc1plus): Be sure that build fails if create_gcov fails.
2025-09-27 Jason Merrill <jason@redhat.com>
PR c++/112632

View File

@ -1,3 +1,17 @@
2025-10-01 Harald Anlauf <anlauf@gmx.de>
PR fortran/122080
* trans-array.cc (gfc_conv_array_parameter): Wrap the derivation of
bounds and strides for the descriptor of an optional dummy array
argument by a test on argument presence when it is supposed to be
passed to an optional argument.
2025-10-01 Paul Thomas <pault@gcc.gnu.org>
PR fortran/122089
* decl.cc (gfc_get_pdt_instance): If the pdt_template is use
associated, 'module' field should be copied to this instance.
2025-09-30 Paul Thomas <pault@gcc.gnu.org>
PR fortran/102241

View File

@ -1,3 +1,8 @@
2025-10-01 Jan Hubicka <hubicka@ucw.cz>
* Make-lang.in: Add lto_FDAS; enable FDA collection
(create_fdas_for_lto1): Be sure that build fails if create_gcov fails.
2025-04-15 Kyrylo Tkachov <ktkachov@nvidia.com>
* lto-partition.cc (add_node_references_to_partition): Define.

View File

@ -1,3 +1,9 @@
2025-10-01 Gaius Mulley <gaiusmod2@gmail.com>
PR modula2/122009
* pge-boot/Gldtoa.cc (ldtoa_ldtoa): Change int to bool for
parameter sign.
2025-09-21 Mark Wielaard <mark@klomp.org>
* lang.opt.urls: Regenerate.

View File

@ -1,3 +1,28 @@
2025-10-01 Jeff Law <jlaw@ventanamicro.com>
PR target/122106
* gcc.target/riscv/pr122106.c: New test.
2025-10-01 Harald Anlauf <anlauf@gmx.de>
PR fortran/122080
* gfortran.dg/ubsan/missing_optional_dummy_9.f90: New test.
2025-10-01 Andreas Schwab <schwab@linux-m68k.org>
PR target/122066
* gcc.c-torture/compile/pr122066.c: New test.
2025-10-01 Andrew MacLeod <amacleod@redhat.com>
PR tree-optimization/120560
* gcc.dg/pr120560.c: New.
2025-10-01 Paul Thomas <pault@gcc.gnu.org>
PR fortran/122089
* gfortran.dg/pdt_51.f03: New test.
2025-09-30 David Malcolm <dmalcolm@redhat.com>
* lib/sarif.py: Remove import of ET.

View File

@ -1,3 +1,50 @@
2025-10-01 François Dumont <frs.dumont@gmail.com>
* include/std/vector (std::erase_if, std::erase): Replace _GLIBCXX20_CONSTEXPR
with 'constexpr' and remove implied 'inline' keyword.
* include/std/string (std::erase_if, std::erase): Likewise.
2025-10-01 Jonathan Wakely <jwakely@redhat.com>
* testsuite/28_regex/basic_regex/assign/wchar_t/pstring.cc: Use
wcslen(cs) instead of sizeof(cs)-1.
2025-10-01 Jonathan Wakely <jwakely@redhat.com>
* testsuite/20_util/unique_ptr/modifiers/93562.cc: Define a
separate deleter for array cases.
2025-10-01 Jonathan Wakely <jwakely@redhat.com>
* testsuite/27_io/basic_filebuf/seekoff/wchar_t/9875_seekoff.cc
(Cvt::do_length): Fix signature to override virtual function in
base.
* testsuite/27_io/basic_filebuf/seekpos/wchar_t/9875_seekpos.cc:
(Cvt::do_length): Likewise.
* testsuite/27_io/basic_filebuf/underflow/char/1.cc
(NoconvCvt::do_in): Likewise.
* testsuite/27_io/basic_filebuf/underflow/wchar_t/11603.cc
(checksumcvt::do_length): Likewise.
2025-10-01 Jonathan Wakely <jwakely@redhat.com>
* testsuite/22_locale/time_get/get/char/3.cc: Add parentheses to
x == y|z expression.
* testsuite/22_locale/time_get/get/wchar_t/3.cc: Likewise.
* testsuite/28_regex/algorithms/regex_match/multiline.cc:
Likewise.
2025-10-01 Jonathan Wakely <jwakely@redhat.com>
* include/bits/stl_uninitialized.h (uninitialized_copy)
(uninitialized_fill, uninitialized_fill_n): Use pragmas to
suppress -Wclass-memaccess warnings.
2025-10-01 Jonathan Wakely <jwakely@redhat.com>
* testsuite/std/memory/polymorphic/copy.cc: Fix spelling of
typedef.
2025-09-30 François Dumont <frs.dumont@gmail.com>
* include/std/inplace_vector: