]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 17 Nov 2025 00:19:25 +0000 (00:19 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 17 Nov 2025 00:19:25 +0000 (00:19 +0000)
ChangeLog
contrib/ChangeLog
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/testsuite/ChangeLog
libstdc++-v3/ChangeLog

index da0ae6ec7302c0dd69f4919023472fd5f65d1ded..3d3b70def55a76100ccb720c8b397dcf0ccb16f3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2025-11-16  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * configure.ac (md_exec_prefix): Don't set on Solaris.
+       * configure: Regenerate.
+
 2025-11-03  Sam James  <sam@gentoo.org>
 
        * configure: Regenerate.
index 0a9b06d8a056ada29487abfe6c11526c29905eb9..d3e29ecc5a7181672f4012132cee4361e57ff249 100644 (file)
@@ -1,3 +1,7 @@
+2025-11-16  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * make_sunver.pl ($elfdump): Remove ccs from path.
+
 2025-11-13  Filip Kastl  <fkastl@suse.cz>
 
        * check-params-in-docs.py: Start parsing from
index e89f68e15d515a26a8f39cffa2a4083ff2542679..84c11a3a1a53bc2aa37dd86dba9c92a159605934 100644 (file)
@@ -1,3 +1,112 @@
+2025-11-16  Andrew MacLeod  <amacleod@redhat.com>
+
+       PR tree-optimization/121345
+       * gimple-range-phi.cc (phi_group::phi_group): Add modifier name.
+       (phi_group::is_modifier_p): Set modifier stmt operand name.
+       (phi_group::calculate_using_modifier): Bound the iteration range
+       by known global range.
+       (phi_analyzer::process_phi): Allow single PHIS if they meet certain
+       criteria.
+       * gimple-range-phi.h (m_modifier_name): New member.
+       (is_modifier_p): Adjust prototype.
+
+2025-11-16  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range-fold.cc (fold_using_range::range_of_phi): Remove
+       the PHI analysis query.
+       * gimple-range-phi.cc (phi_analysis_object): Delete.
+       (phi_analysis_initialize): Delete.
+       (phi_analysis_finalize): Delete.
+       (phi_analysis_available_p): Delete.
+       (phi_analysis): Invoke a phi analyzer.
+       (phi_analyzer::phi_analyzer): Preprocess all phi nodes and set
+       global values for them in a query.
+       (phi_analyzer::process_phi): Use query, and export any inital
+       values found to the query.
+       * gimple-range-phi.h (m_global): Delete.
+       (phi_analysis_initialize): Delete.
+       (phi_analysis_finalize): Delete.
+       (phi_analysis_available_p): Delete.
+       (phi_analysis): Change prototype.
+       * tree-vrp.cc (execute_ranger_vrp): Call phi_analysis.
+
+2025-11-16  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range-cache.cc (ranger_cache::update_consumers): New.
+       * gimple-range-cache.h (update_consumers): New prototype.
+       * gimple-range-fold.cc (fur_depend::fur_depend): Add cache ptr.
+       (fur_depend::register_relation): call update_consumers.
+       * gimple-range-fold.h (fur_depend): Add a cache pointer.
+       * gimple-range.cc (gimple_ranger::fold_range_internal): Add cache ptr.
+
+2025-11-16  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range.cc (gimple_ranger::update_range_info): New.
+       * gimple-range.h (update_range_info): New prototype.
+       * tree-ssanames.cc (set_range_info): Update the range info for
+       the current range query.
+       * value-query.h (update_range_info): New prototype.
+       * value-query.cc (update_range_info): New default stub.
+
+2025-11-16  Andrew Pinski  <andrew.pinski@oss.qualcomm.com>
+
+       * tree-cfgcleanup.cc (tree_forwarder_block_p): Restore check on
+       LOOPS_HAVE_PREHEADERS.
+
+2025-11-16  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * config/sol2.h (MD_EXEC_PREFIX): Remove.
+
+2025-11-16  Richard Biener  <rguenther@suse.de>
+
+       * tree-vect-loop.cc (_loop_vec_info::_loop_vec_info):
+       Initialize can_use_partial_vectors_p to true.
+       (vect_determine_partial_vectors_and_peeling): Add masked_p
+       parameter and honor it.
+       (vect_analyze_loop_2): Pass through masked_p.
+       (vect_analyze_loop_1): Pass down masked_p.
+       (vect_analyze_loop): Simplify check on possible masking of
+       the epilog when there's no .WHILE_ULT.
+
+2025-11-16  Richard Biener  <rguenther@suse.de>
+
+       * tree-vect-loop.cc (vect_determine_partial_vectors_and_peeling):
+       Remove resetting of LOOP_VINFO_USING_SELECT_VL_P.
+       (vect_analyze_loop_2): Decide on partial vectors before
+       deciding on decrementing IV or .SELECT_VL usage.
+
+2025-11-16  Richard Biener  <rguenther@suse.de>
+
+       * tree-vectorizer.h (vect_determine_partial_vectors_and_peeling):
+       Remove.
+       (vect_need_peeling_or_partial_vectors_p): Declare.
+       * tree-vect-loop.cc (vect_determine_partial_vectors_and_peeling):
+       Make static.
+       (vect_need_peeling_or_partial_vectors_p): Export.
+       * tree-vect-loop-manip.cc (vect_do_peeling): Do not call
+       vect_determine_partial_vectors_and_peeling but instead
+       re-compute LOOP_VINFO_PEELING_FOR_NITER using
+       vect_need_peeling_or_partial_vectors_p.
+
+2025-11-16  Richard Biener  <rguenther@suse.de>
+
+       * tree-vectorizer.h (_loop_vec_info::epil_using_partial_vectors_p):
+       Remove.
+       (LOOP_VINFO_EPIL_USING_PARTIAL_VECTORS_P): Likewise.
+       * tree-vect-loop.cc (_loop_vec_info::_loop_vec_info):
+       Do not initialize epil_using_partial_vectors_p.
+       (vect_determine_partial_vectors_and_peeling): Do not set it.
+
+2025-11-16  Lewis Hyatt  <lhyatt@gmail.com>
+
+       * diagnostics/context.cc (num_digits): Change argument type from
+       `int' to `uint64_t'.
+       (test_num_digits): Add test for 64-bit argument.
+       * diagnostic.h (num_digits): Adjust prototype.
+       * input.cc (write_digit): Accept argument in range 0-9 instead of
+       an arbitrary int.
+       (write_digit_row): Adjust to change in write_digit().
+
 2025-11-15  Jason Xu  <bravejason@outlook.com>
 
        * config.gcc (aarch64-*-mingw*): Set use_gcc_stdint to wrap.
index 5b6643c3ba2c3f79abe1fc6a090c9d55f22f6258..bca19945f97c66695bfd80c874ac69ed136822a3 100644 (file)
@@ -1 +1 @@
-20251116
+20251117
index 4f333f16d6cfe2bf600d95f21fd0b7fe1c6518b2..6d5fc75b13f03b2b5effe11b0913758efcc13ca5 100644 (file)
@@ -1,3 +1,9 @@
+2025-11-16  Nathaniel Shead  <nathanieloshead@gmail.com>
+
+       PR c++/122625
+       * module.cc (trees_in::read_var_def): Also track class-scope
+       primary template specialisations.
+
 2025-11-15  Jason Merrill  <jason@redhat.com>
 
        * module.cc (trees_out::write_function_def): Check flag consistency.
index 8c72bbdcd01a2a7c403ea78ee51aa5f1405a19eb..73863476b9130f40afe9e2292a178e6983583228 100644 (file)
@@ -1,3 +1,32 @@
+2025-11-16  Andrew MacLeod  <amacleod@redhat.com>
+
+       PR tree-optimization/121345
+       * g++.dg/pr121345.C: New.
+
+2025-11-16  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gcc.dg/pr102983.c: Adjust final check.
+
+2025-11-16  Nathaniel Shead  <nathanieloshead@gmail.com>
+
+       PR c++/122625
+       * g++.dg/modules/inst-7_a.C: New test.
+       * g++.dg/modules/inst-7_b.C: New test.
+
+2025-11-16  Lewis Hyatt  <lhyatt@gmail.com>
+
+       * gcc.dg/plugin/location-overflow-test-3.c: New test.
+       * gcc.dg/plugin/plugin.exp: Add the new test.
+
+2025-11-16  Andrew Pinski  <andrew.pinski@oss.qualcomm.com>
+
+       * g++.dg/tree-ssa/pr117123.C: un-xfail.
+
+2025-11-16  Sam James  <sam@gentoo.org>
+
+       * gcc.target/aarch64/crc-crc32-data16.c: Fix iteration
+       count to match testname.
+
 2025-11-15  Jakub Jelinek  <jakub@redhat.com>
 
        * c-c++-common/asan/asan-stack-small.c (pa, pb, pc): Make these
index 3a165a3f3f2e3ffb6e1589e5f3e31d6021f94803..0841721875a0a21306ca50a559b8569ad23e9575 100644 (file)
@@ -1,3 +1,13 @@
+2025-11-16  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/122698
+       * src/c++20/syncbuf.cc (__syncbuf_get_mutex): Include <mutex>.
+       Fix indentation of function body.
+
+2025-11-16  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * scripts/extract_symvers.pl: Remove ccs from elfdump path.
+
 2025-11-15  Jonathan Wakely  <jwakely@redhat.com>
 
        * include/bits/atomic_base.h: Tweak grammar of static assert