mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
Daily bump.
This commit is contained in:
parent
54e505d044
commit
c775a030af
@ -1,3 +1,7 @@
|
||||
2024-03-08 Filip Kastl <fkastl@suse.cz>
|
||||
|
||||
* MAINTAINERS: Fix order of names in Write After Aproval
|
||||
|
||||
2024-03-04 demin.han <demin.han@starfivetech.com>
|
||||
|
||||
* MAINTAINERS: Add myself
|
||||
|
@ -1,3 +1,9 @@
|
||||
2024-03-08 Sam James <sam@gentoo.org>
|
||||
|
||||
PR other/109668
|
||||
* dg-extract-results.sh: Check for python3 before python. Check for
|
||||
python2 last.
|
||||
|
||||
2024-03-07 Filip Kastl <fkastl@suse.cz>
|
||||
|
||||
* test_mklog.py: "Moved to..." -> "Move to..."
|
||||
|
@ -1,3 +1,68 @@
|
||||
2024-03-08 Martin Jambor <mjambor@suse.cz>
|
||||
|
||||
PR ipa/113757
|
||||
* tree-inline.cc (redirect_all_calls): Remove code adding SSAs to
|
||||
id->killed_new_ssa_names.
|
||||
|
||||
2024-03-08 Vladimir N. Makarov <vmakarov@redhat.com>
|
||||
|
||||
PR target/113790
|
||||
* lra-assigns.cc (assign_by_spills): Set up all_spilled_pseudos
|
||||
for non-reload pseudo too.
|
||||
|
||||
2024-03-08 David Faust <david.faust@oracle.com>
|
||||
|
||||
* config/bpf/bpf.cc (bpf_expand_cpymem, bpf_expand_setmem): Do
|
||||
not attempt inline expansion if size is above threshold.
|
||||
* config/bpf/bpf.opt (-minline-memops-threshold): New option.
|
||||
* doc/invoke.texi (eBPF Options) <-minline-memops-threshold>:
|
||||
Document.
|
||||
|
||||
2024-03-08 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/114269
|
||||
PR tree-optimization/114074
|
||||
* tree-chrec.cc (chrec_fold_plus_1): Handle sign-conversions
|
||||
in the third CASE_CONVERT case as well.
|
||||
(chrec_fold_multiply): Handle sign-conversions from unsigned
|
||||
by performing the operation in the unsigned type.
|
||||
|
||||
2024-03-08 Georg-Johann Lay <avr@gjlay.de>
|
||||
|
||||
* config/avr/avr.md (*addhi3_zero_extend.ashift1): New pattern.
|
||||
* config/avr/avr.cc (avr_rtx_costs_1) [PLUS]: Compute its cost.
|
||||
|
||||
2024-03-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* bb-reorder.cc (fix_up_fall_thru_edges): Fix up checking assert,
|
||||
asm_noperands < 0 means it is not asm goto too.
|
||||
|
||||
2024-03-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR target/38534
|
||||
* config/i386/i386.opt (mnoreturn-no-callee-saved-registers): New
|
||||
option.
|
||||
* config/i386/i386-options.cc (ix86_set_func_type): Don't use
|
||||
TYPE_NO_CALLEE_SAVED_REGISTERS_EXCEPT_BP unless
|
||||
ix86_noreturn_no_callee_saved_registers is enabled.
|
||||
* doc/invoke.texi (-mnoreturn-no-callee-saved-registers): Document.
|
||||
|
||||
2024-03-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR debug/113918
|
||||
* dwarf2out.cc (gen_field_die): Emit DW_AT_export_symbols
|
||||
on anonymous unions or structs for -gdwarf-5 or -gno-strict-dwarf.
|
||||
|
||||
2024-03-08 demin.han <demin.han@starfivetech.com>
|
||||
|
||||
PR target/114264
|
||||
* config/riscv/riscv-vector-costs.cc: Fix ICE
|
||||
|
||||
2024-03-08 Haochen Gui <guihaoc@gcc.gnu.org>
|
||||
|
||||
* fwprop.cc (forward_propagate_into): Return false for volatile set
|
||||
source rtx.
|
||||
|
||||
2024-03-07 Wilco Dijkstra <wilco.dijkstra@arm.com>
|
||||
|
||||
PR target/113618
|
||||
|
@ -1 +1 @@
|
||||
20240308
|
||||
20240309
|
||||
|
@ -1,3 +1,10 @@
|
||||
2024-03-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* c-common.cc (resolve_overloaded_atomic_exchange): Instead of setting
|
||||
p1 to VIEW_CONVERT_EXPR<I_type> (*p1), set it to MEM_REF with p1 and
|
||||
(typeof (p1)) 0 operands and I_type type.
|
||||
(resolve_overloaded_atomic_compare_exchange): Similarly for p2.
|
||||
|
||||
2024-03-05 Mark Wielaard <mark@klomp.org>
|
||||
|
||||
* c.opt.urls: Regenerate.
|
||||
|
@ -1,3 +1,11 @@
|
||||
2024-03-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR debug/113918
|
||||
* c-tree.h (c_type_dwarf_attribute): Declare.
|
||||
* c-objc-common.h (LANG_HOOKS_TYPE_DWARF_ATTRIBUTE): Redefine.
|
||||
* c-objc-common.cc: Include dwarf2.h.
|
||||
(c_type_dwarf_attribute): New function.
|
||||
|
||||
2024-02-26 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c/114042
|
||||
|
@ -1,3 +1,20 @@
|
||||
2024-03-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* pt.cc (tsubst_expr): Handle MEM_REF.
|
||||
|
||||
2024-03-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR debug/113918
|
||||
* cp-objcp-common.cc (cp_type_dwarf_attribute): Return 1
|
||||
for DW_AT_export_symbols on anonymous structs or unions.
|
||||
|
||||
2024-03-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c++/113802
|
||||
* parser.cc (cp_parser_parameter_declaration): Move the xobj_param_p
|
||||
pack diagnostics after ellipsis handling and if an error is reported,
|
||||
pretend this specifier didn't appear. Formatting fix.
|
||||
|
||||
2024-03-07 Nathaniel Shead <nathanieloshead@gmail.com>
|
||||
|
||||
PR c++/114229
|
||||
|
@ -1,3 +1,18 @@
|
||||
2024-03-08 Gaius Mulley <gaiusmod2@gmail.com>
|
||||
|
||||
* gm2-compiler/M2Quads.mod (Init): Use InitIndexTuned with
|
||||
default size 65K.
|
||||
* gm2-compiler/SymbolConversion.mod (Init): Ditto.
|
||||
* gm2-compiler/SymbolTable.mod (BEGIN): Ditto.
|
||||
* mc-boot/GM2Dependent.cc: Rebuild.
|
||||
* mc-boot/GM2Dependent.h: Rebuild.
|
||||
* mc-boot/GM2RTS.cc: Rebuild.
|
||||
* pge-boot/GIndexing.cc: Rebuild.
|
||||
* pge-boot/GIndexing.h: Rebuild.
|
||||
* pge-boot/GM2Dependent.cc: Rebuild.
|
||||
* pge-boot/GM2Dependent.h: Rebuild.
|
||||
* pge-boot/GM2RTS.cc: Rebuild.
|
||||
|
||||
2024-03-07 Gaius Mulley <gaiusmod2@gmail.com>
|
||||
|
||||
PR modula2/109969
|
||||
|
@ -1,3 +1,89 @@
|
||||
2024-03-08 Martin Jambor <mjambor@suse.cz>
|
||||
|
||||
PR ipa/113757
|
||||
* g++.dg/ipa/pr113757.C: New test.
|
||||
|
||||
2024-03-08 David Faust <david.faust@oracle.com>
|
||||
|
||||
* gcc.target/bpf/inline-memops-threshold-1.c: New test.
|
||||
* gcc.target/bpf/inline-memops-threshold-2.c: New test.
|
||||
|
||||
2024-03-08 Richard Earnshaw <rearnsha@arm.com>
|
||||
|
||||
PR target/113542
|
||||
* gcc.target/arm/bics_3.c: Adjust code to something which should
|
||||
always result in BICS.
|
||||
|
||||
2024-03-08 David Faust <david.faust@oracle.com>
|
||||
|
||||
* gcc.target/bpf/memset-1.c: Move error test case to...
|
||||
* gcc.target/bpf/memset-2.c: ... here. New test.
|
||||
|
||||
2024-03-08 Wilco Dijkstra <wilco.dijkstra@arm.com>
|
||||
|
||||
PR target/113915
|
||||
* gcc.target/arm/builtin-bswap.x: Fix test to avoid emitting CBZ.
|
||||
|
||||
2024-03-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR rtl-optimization/113617
|
||||
PR target/114233
|
||||
* g++.dg/other/pr113617.C: Define -DSHARED when linking with -shared.
|
||||
* g++.dg/other/pr113617-aux.cc: Add definitions for used methods and
|
||||
templates not defined elsewhere.
|
||||
|
||||
2024-03-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR target/38534
|
||||
* gcc.target/i386/pr38534-1.c: Add -mnoreturn-no-callee-saved-registers
|
||||
to dg-options.
|
||||
* gcc.target/i386/pr38534-2.c: Likewise.
|
||||
* gcc.target/i386/pr38534-3.c: Likewise.
|
||||
* gcc.target/i386/pr38534-4.c: Likewise.
|
||||
* gcc.target/i386/pr38534-5.c: Likewise.
|
||||
* gcc.target/i386/pr38534-6.c: Likewise.
|
||||
* gcc.target/i386/pr114097-1.c: Likewise.
|
||||
* gcc.target/i386/stack-check-17.c: Likewise.
|
||||
|
||||
2024-03-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* g++.dg/ext/atomic-5.C: New test.
|
||||
|
||||
2024-03-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR debug/113918
|
||||
* c-c++-common/dwarf2/pr113918.c: New test.
|
||||
|
||||
2024-03-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c++/113802
|
||||
* g++.dg/cpp23/explicit-obj-diagnostics3.C (S0, S1, S2, S3, S4): Don't
|
||||
expect any diagnostics on f and fd member function templates, add
|
||||
similar templates with ...Selves instead of Selves as k and kd and
|
||||
expect diagnostics for those. Expect extra diagnostics in error
|
||||
recovery for g and gd member function templates.
|
||||
|
||||
2024-03-08 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR testsuite/108355
|
||||
* gcc.dg/tree-ssa/ssa-fre-104.c: Align e.
|
||||
|
||||
2024-03-08 Gaius Mulley <gaiusmod2@gmail.com>
|
||||
|
||||
* gm2/iso/pass/arrayconst.mod: New test.
|
||||
* gm2/iso/pass/arrayconst2.mod: New test.
|
||||
* gm2/iso/pass/arrayconst3.mod: New test.
|
||||
* gm2/iso/pass/arrayconst4.mod: New test.
|
||||
|
||||
2024-03-08 demin.han <demin.han@starfivetech.com>
|
||||
|
||||
PR target/114264
|
||||
* gcc.dg/vect/costmodel/riscv/rvv/pr114264.c: New test.
|
||||
|
||||
2024-03-08 Haochen Gui <guihaoc@gcc.gnu.org>
|
||||
|
||||
* gcc.target/powerpc/fwprop-1.c: New.
|
||||
|
||||
2024-03-07 Nathaniel Shead <nathanieloshead@gmail.com>
|
||||
|
||||
PR c++/114229
|
||||
|
@ -1,3 +1,8 @@
|
||||
2024-03-08 Ian Lance Taylor <iant@golang.org>
|
||||
|
||||
* elf.c (elf_uncompress_chdr): Don't assume compressed section is
|
||||
aligned.
|
||||
|
||||
2024-03-02 Ian Lance Taylor <iant@golang.org>
|
||||
|
||||
* Makefile.am (libbacktrace_testing_ldflags): Define.
|
||||
|
@ -1,3 +1,21 @@
|
||||
2024-03-08 Thomas Schwinge <tschwinge@baylibre.com>
|
||||
|
||||
* plugin/plugin-gcn.c (GOMP_OFFLOAD_can_run): Don't consider
|
||||
'GCN_SUPPRESS_HOST_FALLBACK' anymore (assume always-'true').
|
||||
(init_hsa_context): Adjust 'GCN_SUPPRESS_HOST_FALLBACK' error
|
||||
message.
|
||||
|
||||
2024-03-08 Thomas Schwinge <tschwinge@baylibre.com>
|
||||
|
||||
* plugin/plugin-nvptx.c (nvptx_get_num_devices):
|
||||
'cuDeviceGetCount' failure is fatal.
|
||||
|
||||
2024-03-08 Thomas Schwinge <tschwinge@baylibre.com>
|
||||
|
||||
* plugin/plugin-gcn.c (init_hsa_runtime_functions): Fatal error
|
||||
for missing symbols.
|
||||
* plugin/plugin-nvptx.c (init_cuda_lib): Likewise.
|
||||
|
||||
2024-03-06 John David Anglin <danglin@gcc.gnu.org>
|
||||
|
||||
Revert:
|
||||
|
Loading…
Reference in New Issue
Block a user