https://gcc.gnu.org/g:17e14e8be1ae571a22a492d49591043d8f15c957

commit r17-1944-g17e14e8be1ae571a22a492d49591043d8f15c957
Author: GCC Administrator <[email protected]>
Date:   Mon Jun 29 00:16:29 2026 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog                     | 31 +++++++++++++++++++++++++++++++
 gcc/DATESTAMP                     |  2 +-
 gcc/c/ChangeLog                   | 10 ++++++++++
 gcc/cp/ChangeLog                  | 10 ++++++++++
 gcc/objc/ChangeLog                |  5 +++++
 gcc/rust/ChangeLog                |  7 +++++++
 gcc/testsuite/ChangeLog           | 17 +++++++++++++++++
 libgcc/config/avr/libf7/ChangeLog | 15 +++++++++++++++
 libgomp/ChangeLog                 |  4 ++++
 9 files changed, 100 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b69cecad575f..ade60140ec4f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,34 @@
+2026-06-28  Kevin Stefanov  <[email protected]>
+
+       PR middle-end/125274
+       * ctfc.h (ctf_dtdef): Likewise.
+       * dwarf2out.cc (die_struct): Likewise.
+       * dwarf2out.h (dw_cfa_location): Likewise.
+       * gengtype-lex.l (IWORD): Remove BOOL_BITFIELD.
+       * gimple-walk.h (walk_stmt_info): Replace BOOL_BITFIELD with bool.
+       * opts.h (cl_option): Likewise.
+       * config/i386/i386.h (machine_frame_state): Likewise.
+       (machine_function): Likewise.
+       * sched-int.h (deps_desc): Likewise.
+       * sel-sched-ir.h (_expr): Likewise.
+       (_fence): Likewise.
+       (transformed_insns): Likewise.
+       (_sel_insn_data): Likewise.
+       * sel-sched.cc (cmpd_local_params): Likewise.
+       * system.h: Remove #define for BOOL_BITFIELD.
+
+2026-06-28  Andrew Pinski  <[email protected]>
+
+       PR tree-optimization/115571
+       * match.pd (`(float)(a CMP b)`): New pattern.
+
+2026-06-28  Kael Andrew Alonzo Franco  <[email protected]>
+
+       PR tree-optimization/125749
+       PR tree-optimization/125749
+       * match.pd: Use tree_expr_nonnegative_p for MAX (A, B) (==,!=) 0 ->
+       (A|B) (==,!=) 0.
+
 2026-06-27  Jakub Jelinek  <[email protected]>
 
        PR target/125992
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index e77e928a75e8..1d91ae1491ce 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20260628
+20260629
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index e42e6f805cb7..b39d3217f990 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,13 @@
+2026-06-28  Kevin Stefanov  <[email protected]>
+
+       PR middle-end/125274
+       * c-decl.cc (c_binding): Replace BOOL_BITFIELD with bool.
+       (c_scope): Likewise.
+       * c-parser.cc (c_parser): Likewise.
+       * c-tree.h (c_declspecs): Likewise.
+       (c_arg_info): Likewise.
+       (c_declarator): Likewise.
+
 2026-06-23  Kwok Cheung Yeung  <[email protected]>
            Sandra Loosemore  <[email protected]>
 
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index e383d1ed0e2e..6be95e2e4fd3 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,13 @@
+2026-06-28  Kevin Stefanov  <[email protected]>
+
+       PR middle-end/125274
+       * call.cc (conversion): Likewise.
+       * cp-tree.h (saved_scope): Likewise.
+       (language_function): Likewise.
+       (cp_decl_specifier_seq): Likewise.
+       (cp_declarator): Likewise.
+       * name-lookup.h (cp_binding_level): Likewise.
+
 2026-06-26  Marek Polacek  <[email protected]>
 
        PR c++/125900
diff --git a/gcc/objc/ChangeLog b/gcc/objc/ChangeLog
index 63d7494e74c4..99d0e1bbbb2e 100644
--- a/gcc/objc/ChangeLog
+++ b/gcc/objc/ChangeLog
@@ -1,3 +1,8 @@
+2026-06-28  Kevin Stefanov  <[email protected]>
+
+       PR middle-end/125274
+       * objc-act.h (imp_entry): Likewise.
+
 2026-06-19  Léo Hardt  <[email protected]>
 
        * objc-act.cc: Removed orphaned comment from 69f293c
diff --git a/gcc/rust/ChangeLog b/gcc/rust/ChangeLog
index 5ba10b5c3c3a..7121e50e06d3 100644
--- a/gcc/rust/ChangeLog
+++ b/gcc/rust/ChangeLog
@@ -1,3 +1,10 @@
+2026-06-28  Kevin Stefanov  <[email protected]>
+
+       PR middle-end/125274
+       * backend/rust-tree.h (saved_scope): Likewise.
+       (rust_cp_binding_level): Likewise.
+       (language_function): Likewise.
+
 2026-06-25  Enes Cevik  <[email protected]>
 
        * Make-lang.in: Add rust-hir-type-check-intrinsic.o.
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 2889cc2b0726..b0f25882261a 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,20 @@
+2026-06-28  Oleg Endo  <[email protected]>
+
+       PR target/55212
+       * gcc.target/sh/torture/pr55212-c464-1.c: New.
+       * gcc.target/sh/torture/pr55212-c464-2.c: New.
+
+2026-06-28  Andrew Pinski  <[email protected]>
+
+       PR tree-optimization/115571
+       * gcc.dg/tree-ssa/float-conv-1.c: New test.
+
+2026-06-28  Kael Andrew Alonzo Franco  <[email protected]>
+
+       PR tree-optimization/125749
+       PR tree-optimization/125749
+       * gcc.dg/pr125749.c: New test.
+
 2026-06-27  Jakub Jelinek  <[email protected]>
 
        PR target/125992
diff --git a/libgcc/config/avr/libf7/ChangeLog 
b/libgcc/config/avr/libf7/ChangeLog
index 952fbe90e03c..692ed137c107 100644
--- a/libgcc/config/avr/libf7/ChangeLog
+++ b/libgcc/config/avr/libf7/ChangeLog
@@ -1,3 +1,18 @@
+2026-06-28  Georg-Johann Lay  <[email protected]>
+
+       PR target/125752
+       * libf7.c (d_to_ufx, d_to_sfx): Remove prototypes.
+       (__fractdfda, __fractdfuda, __fractdfta, __fractdfuta)
+       (__fractdfdq, __fractdfudq): Move implementation to...
+       * libf7-asm.sx: ...here.
+       (d_to_fx64): Remove.
+       * libf7-common.mk (F7_ASM_PARTS): Add D2dq, D2udq, D2da,
+       D2uda, D2ta, D2uta.
+       (F7F_asm): Remove d_to_fx64.
+       * t-libf7 (LIBF7_DF_CONV): Remove fractdfda, fractdfta,
+       fractdfdq, fractdfuda, fractdfuta, fractdfudq.
+       * f7-renames.h: Rebuild.
+
 2026-06-13  Georg-Johann Lay  <[email protected]>
 
        * asm-defs.h (REGNO): New .macro.
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 8128d995c840..715d742df7d1 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,7 @@
+2026-06-28  Gerald Pfeifer  <[email protected]>
+
+       * libgomp.texi (nvptx): Update NVIDIA CUDA link.
+
 2026-06-25  Paul-Antoine Arras  <[email protected]>
 
        * libgomp.texi (Implementing MASKED and MASTER construct): Fix

Reply via email to