Daily bump.

This commit is contained in:
GCC Administrator
2025-02-27 00:17:51 +00:00
parent 640697f7c2
commit edd9ad2a8a
6 changed files with 127 additions and 1 deletions

View 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.

View File

@@ -1 +1 @@
20250226
20250227

View 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

View 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

View 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

View 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.