]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 8 Dec 2024 00:16:56 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 8 Dec 2024 00:16:56 +0000 (00:16 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/m2/ChangeLog
gcc/testsuite/ChangeLog
libstdc++-v3/ChangeLog

index 0d47d96c0fb12d2b4f65a67bf2b483e4e8a015f0..310f9c7eb6c9b890b8ebbaafbf0c4b33b524a0ae 100644 (file)
@@ -1,3 +1,75 @@
+2024-12-07  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * config/sparc/sparc.md (VIS4B instructions): Add comments.
+
+2024-12-07  Georg-Johann Lay  <avr@gjlay.de>
+
+       * config/avr/avr.cc (avr_print_operand_address): Use
+       avr_insn_location as location for late (during final) diagnostic.
+
+2024-12-07  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/117930
+       * config/i386/i386.md (crotate): New define_code_attr.
+       (*<insn><mode>3_add, *<insn><mode>3_add_1,
+       *<insn><mode>3_sub, *<insn><mode>3_sub_1): New define_insn_and_split
+       patterns plus following define_split for constant first input
+       operand.
+
+2024-12-07  Denis Chertykov  <chertykov@gmail.com>
+
+       PR target/116778
+       * lra-lives.cc (complete_info_p): Clarification of the comment.
+       * lra.cc (lra): Create a full live info after rematerialization.
+
+2024-12-07  Kito Cheng  <kito.cheng@sifive.com>
+
+       Revert:
+       2024-12-05  Kito Cheng  <kito.cheng@sifive.com>
+
+       * config/riscv/riscv-vector-builtins-shapes.cc
+       (vsetvl_def::get_name): Adjust return type.
+       (loadstore_def::get_name): Ditto.
+       (indexed_loadstore_def::get_name): Ditto.
+       (th_loadstore_width_def::get_name): Ditto.
+       (th_indexed_loadstore_width_def::get_name): Ditto.
+       (alu_def::get_name): Ditto.
+       (alu_frm_def::get_name): Ditto.
+       (widen_alu_frm_def::get_name): Ditto.
+       (narrow_alu_frm_def::get_name): Ditto.
+       (reduc_alu_frm_def::get_name): Ditto.
+       (widen_alu_def::get_name): Ditto.
+       (no_mask_policy_def::get_name): Ditto.
+       (return_mask_def::get_name): Ditto.
+       (narrow_alu_def::get_name): Ditto.
+       (move_def::get_name): Ditto.
+       (mask_alu_def::get_name): Ditto.
+       (reduc_alu_def::get_name): Ditto.
+       (th_extract_def::get_name): Ditto.
+       (scalar_move_def::get_name): Ditto.
+       (vundefined_def::get_name): Ditto.
+       (misc_def::get_name): Ditto.
+       (vset_def::get_name): Ditto.
+       (vcreate_def: Ditto.::get_name): Ditto.
+       (read_vl_def::get_name): Ditto.
+       (fault_load_def::get_name): Ditto.
+       (vlenb_def::get_name): Ditto.
+       (seg_loadstore_def::get_name): Ditto.
+       (seg_indexed_loadstore_def::get_name): Ditto.
+       (seg_fault_load_def::get_name): Ditto.
+       (crypto_vv_def::get_name): Ditto.
+       (crypto_vi_def::get_name): Ditto.
+       (crypto_vv_no_op_type_def::get_name): Ditto.
+       (sf_vqmacc_def::get_name): Ditto.
+       (sf_vqmacc_def::get_name): Ditto.
+       (sf_vfnrclip_def::get_name): Ditto.
+       * config/riscv/riscv-vector-builtins.cc
+       (function_builder::add_unique_function): Adjust the type for the
+       function name holder.
+       (function_builder::add_overloaded_function): Ditto.
+       * config/riscv/riscv-vector-builtins.h (function_shape::get_name): Add
+       const to the return type.
+
 2024-12-07  Lewis Hyatt  <lhyatt@gmail.com>
 
        * libgdiagnostics.cc (struct diagnostic_manager): Use location_t(-1)
index a611dd48945175b8435d4972756a2e3e836735dc..f4039d392c226c1c2e2b184c977483947b514544 100644 (file)
@@ -1 +1 @@
-20241207
+20241208
index 627443717ad3c1e57ebff5c8338400e07c4ffac2..0d2164ac5e9e0361516d3518d932d00a6a344683 100644 (file)
@@ -1,3 +1,13 @@
+2024-12-07  Gaius Mulley  <gaiusmod2@gmail.com>
+
+       PR modula2/117948
+       * gm2-compiler/P1Build.bnf (ForwardDeclaration): Pass token
+       position of the FORWARD keyword to EndBuildForward.
+       * gm2-compiler/P1SymBuild.def (EndBuildForward): New parameter
+       forwardPos.
+       * gm2-compiler/P1SymBuild.mod (EndBuildForward): Issue an error at
+       forwardPos if the Iso boolean is false.
+
 2024-12-05  Gaius Mulley  <gaiusmod2@gmail.com>
 
        PR modula2/117904
index 0482bfe8d5251c8b65319cfc5b6d04b00707c65a..92fbda8bf30a8f06fa258e4eddec8dd83f23bf88 100644 (file)
@@ -1,3 +1,13 @@
+2024-12-07  Gaius Mulley  <gaiusmod2@gmail.com>
+
+       PR modula2/117948
+       * gm2/pim/fail/forward.mod: New test.
+
+2024-12-07  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/117930
+       * gcc.target/i386/pr117930.c: New test.
+
 2024-12-06  David Malcolm  <dmalcolm@redhat.com>
 
        PR other/116253
index 4562b9b002954ab42b333a5dc340d764bbe6227e..0f9e028c50da0c36b8ed01a4104fd463db506f4d 100644 (file)
@@ -1,3 +1,11 @@
+2024-12-07  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/std/format: Fix typo in Doxygen comment.
+
+2024-12-07  Matthew Malcomson  <mmalcomson@nvidia.com>
+
+       * .editorconfig: Adjust globbing style to standard syntax.
+
 2024-12-05  Jonathan Wakely  <jwakely@redhat.com>
 
        PR libstdc++/117921