https://gcc.gnu.org/g:a74ef4bd7b6eddd4b91018561f996c99be7f37f5
commit r16-6416-ga74ef4bd7b6eddd4b91018561f996c99be7f37f5 Author: GCC Administrator <[email protected]> Date: Sun Dec 28 00:16:28 2025 +0000 Daily bump. Diff: --- gcc/ChangeLog | 15 ++++++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 6 +++ gcc/algol68/ChangeLog | 98 +++++++++++++++++++++++++++++++++++++++++++++++++ gcc/testsuite/ChangeLog | 57 ++++++++++++++++++++++++++++ libga68/ChangeLog | 7 ++++ 6 files changed, 184 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c3ca1f1b774e..066e8616ce03 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,18 @@ +2025-12-27 Jakub Jelinek <[email protected]> + + PR rtl-optimization/123114 + * simplify-rtx.cc (simplify_context::simplify_relational_operation): + Verify XEXP (XEXP (op0, 0), 0) mode and use CONST0_RTX (cmp_mode) + instead of CONST0_RTX (mode). + +2025-12-27 Andrew Pinski <[email protected]> + + Revert: + 2025-12-24 Andrew Pinski <[email protected]> + + * ifcvt.cc (noce_process_if_block): Move noce_try_cond_zero_arith + last. + 2025-12-26 Jeff Law <[email protected]> PR target/123283 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 7c867c8c3a9d..c328358b99f9 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20251227 +20251228 diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 633a53c81097..1f903d464083 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,9 @@ +2025-12-27 Eric Botcazou <[email protected]> + + PR ada/123306 + * sem_ch12.adb (Analyze_One_Association): Immediately freeze the + root type of mutably tagged types used as actual type parameters. + 2025-12-26 Eric Botcazou <[email protected]> PR ada/123088 diff --git a/gcc/algol68/ChangeLog b/gcc/algol68/ChangeLog index eac44362b002..92c9c95daa92 100644 --- a/gcc/algol68/ChangeLog +++ b/gcc/algol68/ChangeLog @@ -1,3 +1,101 @@ +2025-12-27 Jose E. Marchesi <[email protected]> + + * a68-parser-taxes.cc (tax_module_dec): Do not handle + DEFINING_MODULE_INDICANT. + * a68-exports.cc (a68_add_module_to_moif): Do not mangle module + names in module extracts. + (add_pub_revelations_to_moif): New function. + (a68_do_exports): Simplify and call add_pub_revelations_to_moif. + * a68-imports.cc (a68_decode_moifs): Add all decoded moifs to the + global list TOP_MOIF. + * a68-parser-extract.cc (extract_revelation): Recurse to import + extracts from publicized modules. + (a68_extract_indicants): Do not add symbol table entries for + defining modules. + * a68-types.h (struct TAG_T): Remove field EXPORTED. + (EXPORTED): Remove macro. + (TOP_MOIF): Define. + * a68-parser.cc (a68_parser): Initialize global list of moifs. + (a68_new_tag): Do not initialize EXPORTED. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * a68-parser-top-down.cc (a68_top_down_parser): Stop parsing after + longjump. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * a68-parser-bottom-up.cc (a68_bottom_up_error_check): Do not + check for the absence of public-symbols. + (a68_bottom_up_coalesce_pub): Removed function. + * a68-parser.cc (a68_parser): Do not call + a68_bottom_up_coalesce_pub + * a68-parser-extract.cc (a68_extract_indicants): Adapt to the + presence of public-symbols. + * a68-parser-modes.cc (get_mode_from_proc_variables): Likewise. + * a68-parser-taxes.cc (tax_variable_dec): Likewise. + (tax_proc_variable_dec): Likewise. + (tax_op_dec): Likewise + (tax_prio_dec): Likewise. + * a68-low-decls.cc (a68_lower_mode_declaration): Adapt to the + presence of public-symbols. + (a68_lower_variable_declaration): Likewise. + (a68_lower_identity_declaration): Likewise. + (a68_lower_procedure_declaration): Likewise. + (a68_lower_procedure_variable_declaration): Likewise. + (a68_lower_brief_operator_declaration): Likewise. + (a68_lower_operator_declaration): Likewise. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * a68-moids-misc.cc (a68_pack_soids_in_moid): Return the result of + a68_register_extra_mode. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * a68-parser-extract.cc (a68_extract_indicants): Do not + detect_redefined_keyword for accessed modules. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * a68-parser-scope.cc (scope_access_clause): New function. + (scope_enclosed_clause): Use scope_access_clause. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * a68-parser-bottom-up.cc (reduce_enclosed_clauses): Reduce joined + list of revelations. + * a68-low-clauses.cc (a68_lower_revelation_ludes): New function. + (a68_lower_access_clause): Use a68_lower_revelation_ludes. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * a68-parser-extract.cc (a68_extract_indicants): Fix + MODE_DECLARATION to MODULE_DECLARATION typo. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * a68-parser-top-down.cc (top_down_access): An access clause may + be nested in another access clause. + * a68-parser-extract.cc (a68_extract_indicants): Coalesce 'pub' + symbols. + (a68_extract_indicants): Nested access are not allowed in module + texts. + * a68-parser-bottom-up.cc (expected_module_text): New function. + (reduce_prelude_packet): Use expected_module_text. + (a68_bottom_up_error_check): Add comment. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * a68-types.h (struct MOIF_T): Add chain_next to GTY info. + * a68-imports.cc (a68_decode_modes): Mode offsets are relative to + the start of the moif, not the start of the exports. + (a68_decode_moifs): Renamed from a68_decode_moif and changed to + decode multiple moifs from the exports. + (a68_open_packet): Call a68_decode_moifs and look for the right + moif. + * a68-exports.cc (a68_moif_new): Initialize NEXT (moif). + 2025-12-23 Mohammad-Reza Nabipoor <[email protected]> * a68.h (a68_file_size): Changed to use file descriptor. diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 734ec571c516..1e78a3c73e93 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,60 @@ +2025-12-27 Jose E. Marchesi <[email protected]> + + * algol68/execute/modules/module22bar.a68: New test. + * algol68/execute/modules/module22foo.a68: Likewise. + * algol68/execute/modules/program-22.a68: Likewise. + * algol68/compile/modules/program-11.a68: Adjust test to + publicized modules. + * algol68/compile/modules/program-error-multiple-delaration-module-1.a68: + Likewise. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * algol68/compile/error-loop-1.a68: New test. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * algol68/compile/module-2.a68: Expand test a little. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * algol68/execute/pack-soids-in-moid-1.a68: New test. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * algol68/compile/modules/program-error-multiple-delaration-module-1.a68: + New test. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * algol68/compile/modules/module10.a68: New test. + * algol68/execute/modules/program-18.a68: Likewise. + * algol68/execute/modules/module18c.a68: Likewise. + * algol68/execute/modules/module18b.a68: Likewise. + * algol68/execute/modules/module18a.a68: Likewise. + * algol68/compile/modules/program-11.a68: Likewise. + * algol68/compile/modules/program-10.a68: Likewise. + * algol68/compile/modules/module12.a68: Likewise. + * algol68/compile/modules/module11.a68: Likewise. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * algol68/compile/error-module-nested-access-1.a68: New test. + * algol68/execute/modules/program-21.a68: Likewise. + +2025-12-27 Jose E. Marchesi <[email protected]> + + * algol68/execute/modules/module17.a68: New test. + +2025-12-27 Jakub Jelinek <[email protected]> + + PR rtl-optimization/123114 + * gcc.dg/pr123114.c: New test. + +2025-12-27 Eric Botcazou <[email protected]> + + * gnat.dg/specs/mutably_tagged1.ads: New test. + 2025-12-26 Eric Botcazou <[email protected]> * gnat.dg/aggr34.adb: New test. diff --git a/libga68/ChangeLog b/libga68/ChangeLog index 129bbeb1943a..f6a4d403cea5 100644 --- a/libga68/ChangeLog +++ b/libga68/ChangeLog @@ -1,3 +1,10 @@ +2025-12-27 Pietro Monteiro <[email protected]> + + * ga68-alloc.c: Include ga68.h before all includes. + * ga68-error.c: Likewise. + * ga68-standenv.c: Likewise. + * ga68-unistr.c: Likewise. + 2025-12-16 Pietro Monteiro <[email protected]> * ga68-unistr.c (_libga68_u32_cmp): Add `static' specifier.
