]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Tue, 11 Mar 2025 00:17:58 +0000 (00:17 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Tue, 11 Mar 2025 00:17:58 +0000 (00:17 +0000)
contrib/ChangeLog
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/fortran/ChangeLog
gcc/m2/ChangeLog
gcc/po/ChangeLog
gcc/testsuite/ChangeLog
libcpp/po/ChangeLog
libgcc/ChangeLog

index 83e3e5dc8953c9094913c56ab2923f7c53d5a86c..91d7a7d72550d39a3cc18b73c442bd8fa56e1303 100644 (file)
@@ -1,3 +1,8 @@
+2025-03-10  Jakub Jelinek  <jakub@redhat.com>
+
+       * gcc-changelog/git_commit.py (default_changelog_locations):
+       Add gcc/cobol and libgcobol entries.
+
 2025-01-02  Jakub Jelinek  <jakub@redhat.com>
 
        * update-copyright.py (GCCFilter): Ignore gen-evolution.awk and
index a1c16d7660e334ddf57c5b9952590c8b1253a9ae..e3189db09d7b7fb2547c272ba27c8faea3d69bb4 100644 (file)
@@ -1,3 +1,46 @@
+2025-03-10  Richard Sandiford  <richard.sandiford@arm.com>
+           Kugan Vivekanandarajah  <kvivekananda@nvidia.com>
+
+       PR target/115258
+       * config/aarch64/aarch64.cc (aarch64_vectorize_vec_perm_const): Use
+       d.one_vector_p to decide whether op1 should be a copy of op0.
+
+2025-03-10  Vladimir N. Makarov  <vmakarov@redhat.com>
+
+       PR target/114991
+       * ira-costs.cc (equiv_can_be_consumed_p): Add new argument invariant_p.
+       Add code for dealing with the invariant.
+       (calculate_equiv_gains): Don't consider init insns.  Pass the new
+       argument to equiv_can_be_consumed_p.  Don't treat invariant as
+       memory.
+
+2025-03-10  Sandra Loosemore  <sloosemore@baylibre.com>
+
+       * doc/invoke.texi (Instrumentation Options): Fix typo introduced
+       in commit 313edeeeb607fe32da5633cfb6f91977add446f6.
+
+2025-03-10  Christophe Lyon  <christophe.lyon@linaro.org>
+
+       PR target/115439
+       * config/arm/mve.md (vec_vcmp, vec_vcmpu, vcond_mask): Use
+       vpr_register_operand predicate for MVE_VPRED operands.
+
+2025-03-10  Xi Ruoyao  <xry111@xry111.site>
+
+       PR target/119127
+       * config/loongarch/loongarch.cc
+       (loongarch_reassoc_shift_bitwise): Sign extend mask to mode,
+       specially handle the case it's extended to -1.
+       * config/loongarch/loongarch.md
+       (loongarch_reassoc_shift_bitwise): Update the comment for the
+       special case.
+
+2025-03-10  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/117178
+       * gimple-ssa-warn-access.cc (maybe_warn_nonstring_arg): Look through
+       multi-dimensional array types, stop at the innermost ARRAY_TYPE.
+
 2025-03-09  Jeff Law  <jlaw@ventanamicro.com>
 
        PR rtl-optimization/117467
index 95dbf27d32ad684b58c00cd7bb311e683ff16b78..4bd9e51ab1b5d93f11d0171ce8cb23472a2d998b 100644 (file)
@@ -1 +1 @@
-20250310
+20250311
index f633275c8354dbcbf0f7e9e2b5043fbc200b9028..774de83260e23712deeb72ecdedcc318fec9c39d 100644 (file)
@@ -1,3 +1,13 @@
+2025-03-10  Nathaniel Shead  <nathanieloshead@gmail.com>
+
+       * module.cc (trees_out::has_tu_local_dep): Also look at the
+       TI_TEMPLATE if we don't find a dep for a decl.
+       (depset::hash::is_tu_local_entity): Handle unnamed template
+       types, treat lambdas specially.
+       (is_exposure_of_member_type): New function.
+       (depset::hash::add_dependency): Use it.
+       (depset::hash::finalize_dependencies): Likewise.
+
 2025-03-08  Sandra Loosemore  <sloosemore@baylibre.com>
 
        * parser.cc (cp_parser_asm_definition): Make comment more explicit.
index b1fc6f595a3a9894abbfd3bfa373a22c40974b71..5f4137271480151ed50ccda16c996281cebba05c 100644 (file)
@@ -1,3 +1,9 @@
+2025-03-10  Andre Vehreschild  <vehre@gcc.gnu.org>
+
+       PR fortran/107143
+       * dependency.cc (check_data_pointer_types): Do not just compare
+       for derived type, but for same derived type.
+
 2025-03-09  Thomas Koenig  <tkoenig@gcc.gnu.org>
 
        PR fortran/119157
index 4cf3d14914ee5a60e1423aa0c212f2408d8aefca..4dd06ab54d78d022ca92d6ebb72e83811a34562b 100644 (file)
@@ -1,3 +1,18 @@
+2025-03-10  Gaius Mulley  <gaiusmod2@gmail.com>
+
+       PR modula2/119192
+       * gm2-compiler/M2GCCDeclare.def (TryDeclareType): New procedure.
+       * gm2-compiler/M2GCCDeclare.mod (IsAnyType): New procedure.
+       (TryDeclareType): Ditto.
+       * gm2-compiler/M2GenGCC.mod (FoldTBitsize): New procedure.
+       (FoldStandardFunction): Call FoldTBitsize.
+       * gm2-gcc/m2expr.cc (BuildTBitSize): Improve comment.
+       (m2expr_BuildSystemTBitSize): New function.
+       * gm2-gcc/m2expr.def (BuildSystemTBitSize): New procedure
+       function.
+       * gm2-gcc/m2expr.h (m2expr_BuildSystemTBitSize): New function
+       prototype.
+
 2025-03-05  Gaius Mulley  <gaiusmod2@gmail.com>
 
        PR modula2/118998
index 5f2e5026b659baa1855d1132df43b51018324dee..3a465fe278c303ce6b160fb64c80c1a92db4d922 100644 (file)
@@ -1,3 +1,7 @@
+2025-03-10  Joseph Myers  <josmyers@redhat.com>
+
+       * fr.po, sv.po: Update.
+
 2025-03-03  Joseph Myers  <josmyers@redhat.com>
 
        * be.po, da.po, de.po, el.po, es.po, fi.po, fr.po, hr.po, id.po,
index 0aba2b10e217f06cbdb53f63ee4a5cd36d1bee42..488685018cebde0a929e6a183ae1a84068dfb08f 100644 (file)
@@ -1,3 +1,63 @@
+2025-03-10  Richard Sandiford  <richard.sandiford@arm.com>
+           Kugan Vivekanandarajah  <kvivekananda@nvidia.com>
+
+       PR target/115258
+       * gcc.target/aarch64/pr115258_2.c: New test.
+
+2025-03-10  Vladimir N. Makarov  <vmakarov@redhat.com>
+
+       PR target/114991
+       * gcc.target/aarch64/pr114991.c: New test.
+
+2025-03-10  Gaius Mulley  <gaiusmod2@gmail.com>
+
+       PR modula2/119192
+       * gm2/sets/run/pass/simplepacked.mod: Uncomment asserts.
+
+2025-03-10  Nathaniel Shead  <nathanieloshead@gmail.com>
+
+       * g++.dg/modules/internal-10.C: New test.
+
+2025-03-10  Andre Vehreschild  <vehre@gcc.gnu.org>
+
+       PR fortran/107143
+       * gfortran.dg/forall_20.f90: New test.
+
+2025-03-10  Jakub Jelinek  <jakub@redhat.com>
+           Michael Leuchtenburg  <michael@slashhome.org>
+
+       PR libgcc/119151
+       * gcc.dg/pr119151.c: New test.
+
+2025-03-10  Xi Ruoyao  <xry111@xry111.site>
+
+       PR target/119127
+       * gcc.target/loongarch/pr119127.c: New file.
+
+2025-03-10  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/117178
+       * c-c++-common/attr-nonstring-11.c: Remove xfails.
+       * c-c++-common/attr-nonstring-12.c (warn_strcmp_cst_1,
+       warn_strcmp_cst_2): Don't expect any warnings here.
+       (warn_strcmp_cst_3, warn_strcmp_cst_4): New functions with expected
+       warnings.
+
+2025-03-10  Lulu Cheng  <chenglulu@loongson.cn>
+
+       * gcc.dg/vect/slp-26.c: Adjust.
+
+2025-03-10  Lulu Cheng  <chenglulu@loongson.cn>
+
+       * gcc.dg/vect/bb-slp-77.c: Add loongarch*-*-* to the list
+       of expected failing targets.
+
+2025-03-10  Lulu Cheng  <chenglulu@loongson.cn>
+
+       * gcc.dg/vect/pr112325.c: Add the vector compilation
+       option '-mlsx' for LoongArch.
+       * gcc.dg/vect/pr117888-1.c: Likewise.
+
 2025-03-09  Andrew Pinski  <quic_apinski@quicinc.com>
 
        PR tree-optimization/118922
index 2ad5b479d75b29c3220f08ec47e8e63f045278f9..06bd576a149e5f7035f26e9a43cca81de7d14442 100644 (file)
@@ -1,3 +1,7 @@
+2025-03-10  Joseph Myers  <josmyers@redhat.com>
+
+       * de.po: Update.
+
 2025-03-03  Joseph Myers  <josmyers@redhat.com>
 
        * be.po, ca.po, da.po, de.po, el.po, eo.po, es.po, fi.po, fr.po,
index 4c16a8806342c01c02538c9ea8df61d0bd078f46..c0f05b62bdfb6610a92e2bfc7fec37a16716efba 100644 (file)
@@ -1,3 +1,18 @@
+2025-03-10  Jakub Jelinek  <jakub@redhat.com>
+           Michael Leuchtenburg  <michael@slashhome.org>
+
+       PR libgcc/119151
+       * unwind-dw2-btree.h (btree_split_inner): Add size argument.  If
+       left_fence is in the middle of [target,target + size - 1] range,
+       increase it to target + size - 1.
+       (btree_insert): Adjust btree_split_inner caller.  If fence is smaller
+       than base + size - 1, increase it and separator of the slot to
+       base + size - 1.
+
+2025-03-10  Jakub Jelinek  <jakub@redhat.com>
+
+       * unwind-dw2-btree.h: Formatting fixes.
+
 2025-03-01  Jan Dubiec  <jdx@o2.pl>
 
        PR target/114222