]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 27 Feb 2025 00:17:51 +0000 (00:17 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 27 Feb 2025 00:17:51 +0000 (00:17 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/c/ChangeLog
gcc/fortran/ChangeLog
gcc/testsuite/ChangeLog
libstdc++-v3/ChangeLog

index 87e7e4566e0050df4e0c602489ebdc96cb462b6c..e3aa86bcc67dd7bf797bd3785ec9f825fe4cc142 100644 (file)
@@ -1,3 +1,50 @@
+2025-02-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/119001
+       * varasm.cc (output_constructor_regular_field): Don't fail
+       assertion if next is non-NULL and FIELD_DECL if
+       TREE_CODE (local->type) is UNION_TYPE.
+
+2025-02-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/114870
+       * ginclude/stddef.h (__STDC_VERSION_STDDEF_H__, unreachable): Don't
+       redefine multiple times if stddef.h is first included without __need_*
+       defines and later with them.  Move nullptr_t and unreachable and
+       __STDC_VERSION_STDDEF_H__ definitions into the same
+       defined (__STDC_VERSION__) && __STDC_VERSION__ > 201710L #if block.
+
+2025-02-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/119002
+       * config/arm/arm.h (REVERSE_CONDITION): Use CODE - the macro
+       argument - in the macro rather than code.
+
+2025-02-26  Vladimir N. Makarov  <vmakarov@redhat.com>
+
+       PR middle-end/119021
+       * lra.cc (lra_asm_insn_error): Use lra_invalidate_insn_data
+       instead of lra_update_insn_regno_info.
+       * lra-assigns.cc (lra_split_hard_reg_for): Restore old code.
+
+2025-02-26  Alexandre Oliva  <oliva@adacore.com>
+
+       * doc/sourcebuild.texi: Add x86 effective target.
+
+2025-02-26  Alexandre Oliva  <oliva@adacore.com>
+
+       * doc/sourcebuild.texi (dg-do-if): Document.
+
+2025-02-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR testsuite/116143
+       * simple-diagnostic-path.h (simple_diagnostic_path::num_events): Define
+       inline.
+       (simple_diagnostic_path::num_threads): Likewise.
+       * simple-diagnostic-path.cc (simple_diagnostic_path::num_events):
+       Remove out of line definition.
+       (simple_diagnostic_path::num_threads): Likewise.
+
 2025-02-25  Jason Merrill  <jason@redhat.com>
 
        * doc/install.texi: 10.5 won't bootstrap with C++98.
index 5faab8b9a3f82995a22f41f53f5c8b051b4df7b4..78e945cf0f08fc54596e98da3eb01df1ceb39724 100644 (file)
@@ -1 +1 @@
-20250226
+20250227
index 06db950e8c4a6db8c772817a3db753b63153ea61..adaabd53ecbcc3f54adda7439467aa41d7a8e467 100644 (file)
@@ -1,3 +1,12 @@
+2025-02-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/119001
+       * c-typeck.cc (pop_init_level): Don't clear constructor_type
+       if DECL_CHAIN of constructor_fields is NULL but p->type is UNION_TYPE.
+       Formatting fix.
+       (process_init_element): Diagnose non-static initialization of flexible
+       array member in union or FAM in union initialization in nested context.
+
 2025-02-25  Jakub Jelinek  <jakub@redhat.com>
 
        PR c/119000
index ec77eb56db4276ace881135faa14eba75e55144c..65bd3cda71132a49da446ee7855549e3bdca6813 100644 (file)
@@ -1,3 +1,8 @@
+2025-02-26  Andre Vehreschild  <vehre@gcc.gnu.org>
+
+       PR fortran/108233
+       * trans-expr.cc (gfc_trans_assignment_1): Remove SAVE_EXPR on lhs.
+
 2025-02-25  Andre Vehreschild  <vehre@gcc.gnu.org>
 
        PR fortran/107635
index 46704c6a30305627369a4b12b4d052b175b8d882..fc5757f8c9126bbb239158bbc911f0de34cffb3a 100644 (file)
@@ -1,3 +1,62 @@
+2025-02-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/119001
+       * gcc.dg/pr119001-1.c: New test.
+       * gcc.dg/pr119001-2.c: New test.
+
+2025-02-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/114870
+       * gcc.dg/c23-stddef-2.c: New test.
+
+2025-02-26  Alexandre Oliva  <oliva@adacore.com>
+
+       * lib/target-supports.exp (check_effective_target_x86): New.
+       Replace all uses of i?86-*-* and x86_64-*-* in this file.
+
+2025-02-26  Alexandre Oliva  <oliva@adacore.com>
+
+       * lib/target-supports-dg.exp (dg-do-if): New.
+       * gcc.dg/vect/vect-simd-clone-16f.c: Use -msse4 on x86, and
+       skip in case execution is enabled but the runtime isn't.
+       * gcc.dg/vect/vect-simd-clone-17f.c: Likewise.
+       * gcc.dg/vect/vect-simd-clone-18f.c: Likewise.
+       * gcc.dg/vect/vect-simd-clone-20.c: Likewise, but only skip
+       the scan test.
+
+2025-02-26  Andre Vehreschild  <vehre@gcc.gnu.org>
+
+       PR fortran/108233
+       * gfortran.dg/coarray/complex_1.f90: New test.
+
+2025-02-26  Tamar Christina  <tamar.christina@arm.com>
+
+       PR tree-optimization/118464
+       PR tree-optimization/116855
+       * g++.dg/ext/pragma-unroll-lambda-lto.C: Add pragma novector.
+       * gcc.dg/tree-ssa/gen-vect-2.c: Likewise.
+       * gcc.dg/tree-ssa/gen-vect-25.c: Likewise.
+       * gcc.dg/tree-ssa/gen-vect-32.c: Likewise.
+       * gcc.dg/tree-ssa/ivopt_mult_2g.c: Likewise.
+       * gcc.dg/tree-ssa/ivopts-5.c: Likewise.
+       * gcc.dg/tree-ssa/ivopts-6.c: Likewise.
+       * gcc.dg/tree-ssa/ivopts-7.c: Likewise.
+       * gcc.dg/tree-ssa/ivopts-8.c: Likewise.
+       * gcc.dg/tree-ssa/ivopts-9.c: Likewise.
+       * gcc.dg/tree-ssa/predcom-dse-1.c: Likewise.
+       * gcc.dg/tree-ssa/predcom-dse-10.c: Likewise.
+       * gcc.dg/tree-ssa/predcom-dse-11.c: Likewise.
+       * gcc.dg/tree-ssa/predcom-dse-12.c: Likewise.
+       * gcc.dg/tree-ssa/predcom-dse-2.c: Likewise.
+       * gcc.dg/tree-ssa/predcom-dse-3.c: Likewise.
+       * gcc.dg/tree-ssa/predcom-dse-4.c: Likewise.
+       * gcc.dg/tree-ssa/predcom-dse-5.c: Likewise.
+       * gcc.dg/tree-ssa/predcom-dse-6.c: Likewise.
+       * gcc.dg/tree-ssa/predcom-dse-7.c: Likewise.
+       * gcc.dg/tree-ssa/predcom-dse-8.c: Likewise.
+       * gcc.dg/tree-ssa/predcom-dse-9.c: Likewise.
+       * gcc.target/i386/pr90178.c: Likewise.
+
 2025-02-25  Andrew Pinski  <quic_apinski@quicinc.com>
 
        PR testsuite/115028
index ece8553b59a8cff50e5f4f94929cff766067345a..398706886cd7a900b9ec332abe57bddd6cc5844f 100644 (file)
@@ -1,3 +1,9 @@
+2025-02-26  Patrick Palka  <ppalka@redhat.com>
+
+       PR libstdc++/118083
+       * include/bits/ranges_base.h
+       (ranges::__access::__possibly_const_range): Mention LWG 4027.
+
 2025-02-25  Giuseppe D'Angelo  <giuseppe.dangelo@kdab.com>
 
        * include/bits/algorithmfwd.h (stable_sort): Add constexpr.