From: GCC Administrator Date: Sun, 21 Jun 2026 00:16:26 +0000 (+0000) Subject: Daily bump. X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=faeb3df2a9ada3df80f3e603b5f9fd784e8a2677;p=thirdparty%2Fgcc.git Daily bump. --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bb97c682544..09ec1a6f56f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,34 @@ +2026-06-20 Gerald Pfeifer + + * doc/extend.texi (Integer Overflow Builtins): Spell compile time + without dash when a noun. + * doc/invoke.texi (Warning Options): Ditto. + * doc/passes.texi (Tree SSA passes): Ditto. + * doc/rtl.texi (Conversions): Ditto. + +2026-06-20 Georg-Johann Lay + + * config/avr/avr.cc (avr_progmem_p): Use strip_array_types to + peel off ARRAY_TYPEs. + (avr_nonconst_pointer_addrspace): Same. + (avr_insert_attributes): Same. + (avr_decl_maybe_lds_p): Same. + +2026-06-20 Roger Sayle + Hongtao Liu + + * config/i386/i386-features.cc (scalar_chain::convert_op): Check + if the (DImode) SUBREG being converted by STV has an original mode + that's tieable to the vector mode (V2DImode), if not (e.g. DDmode) + emit this "conversion" as a separate move for reload to handle. + +2026-06-20 Georg-Johann Lay + + * config/avr/avr.cc (avr_init_builtins): Use XALLOCAVEC + instead of alloca to locally alloc char[]. + * config/avr/avr-c.cc (avr_cpu_cpp_builtins): Same. + * config/avr/avr-log.cc (avr_log_set_avr_log): Same. + 2026-06-19 Andrew Pinski PR tree-optimization/125857 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index be0a3ca816d..752348ae7dd 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20260620 +20260621 diff --git a/gcc/cobol/ChangeLog b/gcc/cobol/ChangeLog index 4059c7cc52d..bb496080ea6 100644 --- a/gcc/cobol/ChangeLog +++ b/gcc/cobol/ChangeLog @@ -1,3 +1,17 @@ +2026-06-20 Robert Dubner + + * genapi.cc (parser_enter_file): Establish a var_decl for the + common packed-decimal to binary conversion table. + * genutil.cc (digit): Divide-and conquer numeric-display converter. + (num_disp_dive): Likewise. + (pd_dive): Divide-and-conqure packed-decimal converter. + (get_pd_value): Likewise. + (get_binary_value_tree): Use the new routines. + (binary_from_FldNumericBinary): Divide-and conquer numeric-display + converter. + * genutil.h: Declaration for var_decl_dp2bin. + * move.cc (mh_little_endian): Allow FldPacked as a source. + 2026-06-18 Robert Dubner * cbldiag.h (current_program_index): Suppress cppcheck warning. diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b917cbc9097..326c0be861b 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,18 @@ +2026-06-20 Iain Sandoe + + * gcc.dg/debug/dwarf2/dwarf2-macro.c: Skip for Darwin23+. + * gcc.dg/debug/dwarf2/dwarf2-macro2.c: Likewise. + +2026-06-20 Iain Sandoe + + PR testsuite/112728 + * lib/scanasm.exp (remove_lto_sections): New. + +2026-06-20 Tamar Christina + + PR testsuite/125871 + * gcc.dg/vect/vect-early-break_144-pr125804.c: New test. + 2026-06-19 Kees Cook PR c/125604 diff --git a/libgcobol/ChangeLog b/libgcobol/ChangeLog index 0cf264d48b5..c1dfe9ba2c8 100644 --- a/libgcobol/ChangeLog +++ b/libgcobol/ChangeLog @@ -1,3 +1,20 @@ +2026-06-20 Robert Dubner + + * charmaps.cc: Eliminate rt_encoding_t. + * libgcobol.cc (console_init): Change how __gg__console_encoding is + established. + (initialize_program_state): Likewise. + (get_binary_value_local): Use new conversion algorithms. + (__gg__move): Likewise. + * stringbin.cc (__gg__numeric_display_to_binary): Likewise. + (digit_rt): Likewise. + (num_disp_dive_rt): Likewise. + (pd_dive_rt): Likewise. + (__gg__packed_to_binary): Likewise. + * stringbin.h (STRINGBIN_H_): Declaration for __gg__dp2bin. + (__gg__numeric_display_to_binary): Use new algorithms. + (__gg__packed_to_binary): Likewise. + 2026-06-16 Robert Dubner * gmath.cc (multiply_int256_by_int64): Comment.