Daily bump.
This commit is contained in:
parent
76f6a10e41
commit
910735c5d7
@ -1,3 +1,10 @@
|
||||
2023-04-26 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
Backported from master:
|
||||
2023-04-26 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* gennews (files): Add files for GCC 13.
|
||||
|
||||
2023-04-26 Release Manager
|
||||
|
||||
* GCC 13.1.0 released.
|
||||
|
@ -1,3 +1,59 @@
|
||||
2023-04-26 Andrew Stubbs <ams@codesourcery.com>
|
||||
|
||||
Backported from master:
|
||||
2023-04-20 Andrew Stubbs <ams@codesourcery.com>
|
||||
|
||||
* config/gcn/gcn-valu.md (vnsi, VnSI): Add scalar modes.
|
||||
(ldexp<mode>3): Delete.
|
||||
(ldexp<mode>3<exec>): Change "B" to "A".
|
||||
|
||||
2023-04-26 Andrew Stubbs <ams@codesourcery.com>
|
||||
|
||||
Backported from master:
|
||||
2023-04-18 Andrew Stubbs <ams@codesourcery.com>
|
||||
|
||||
* config/gcn/gcn-valu.md (SV_SFDF): New iterator.
|
||||
(SV_FP): New iterator.
|
||||
(scalar_mode, SCALAR_MODE): Add identity mappings for scalar modes.
|
||||
(recip<mode>2): Unify the two patterns using SV_FP.
|
||||
(div_scale<mode><exec_vcc>): New insn.
|
||||
(div_fmas<mode><exec>): New insn.
|
||||
(div_fixup<mode><exec>): New insn.
|
||||
(div<mode>3): Unify the two expanders and rewrite using hardfp.
|
||||
* config/gcn/gcn.cc (gcn_md_reorg): Support "vccwait" attribute.
|
||||
* config/gcn/gcn.md (unspec): Add UNSPEC_DIV_SCALE, UNSPEC_DIV_FMAS,
|
||||
and UNSPEC_DIV_FIXUP.
|
||||
(vccwait): New attribute.
|
||||
|
||||
2023-04-26 Richard Biener <rguenther@suse.de>
|
||||
|
||||
Backported from master:
|
||||
2023-04-25 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/109609
|
||||
* attr-fnspec.h (arg_max_access_size_given_by_arg_p):
|
||||
Clarify semantics.
|
||||
* tree-ssa-alias.cc (check_fnspec): Correctly interpret
|
||||
the size given by arg_max_access_size_given_by_arg_p as
|
||||
maximum, not exact, size.
|
||||
|
||||
2023-04-26 Richard Biener <rguenther@suse.de>
|
||||
|
||||
Backported from master:
|
||||
2023-04-25 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR rtl-optimization/109585
|
||||
* tree-ssa-alias.cc (aliasing_component_refs_p): Fix typo.
|
||||
|
||||
2023-04-26 Richard Biener <rguenther@suse.de>
|
||||
|
||||
Backported from master:
|
||||
2023-04-21 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/109573
|
||||
* tree-vect-loop.cc (vectorizable_live_operation): Allow
|
||||
unhandled SSA copy as well. Demote assert to checking only.
|
||||
|
||||
2023-04-26 Release Manager
|
||||
|
||||
* GCC 13.1.0 released.
|
||||
|
@ -1 +1 @@
|
||||
20230426
|
||||
20230427
|
||||
|
@ -1,3 +1,12 @@
|
||||
2023-04-26 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
Backported from master:
|
||||
2023-04-20 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c/107041
|
||||
* c-decl.cc (diagnose_mismatched_decls): Avoid -Wenum-int-mismatch
|
||||
warning on acc_on_device declaration.
|
||||
|
||||
2023-04-26 Release Manager
|
||||
|
||||
* GCC 13.1.0 released.
|
||||
|
@ -1,3 +1,70 @@
|
||||
2023-04-26 Andrew Stubbs <ams@codesourcery.com>
|
||||
|
||||
Backported from master:
|
||||
2023-04-20 Andrew Stubbs <ams@codesourcery.com>
|
||||
|
||||
* lib/target-supports.exp
|
||||
(check_effective_target_vect_call_copysignf): Add amdgcn.
|
||||
(check_effective_target_vect_call_sqrtf): Add amdgcn.
|
||||
(check_effective_target_vect_call_ceilf): Add amdgcn.
|
||||
(check_effective_target_vect_call_floor): Add amdgcn.
|
||||
(check_effective_target_vect_logical_reduc): Add amdgcn.
|
||||
|
||||
2023-04-26 Andrew Stubbs <ams@codesourcery.com>
|
||||
|
||||
Backported from master:
|
||||
2023-04-18 Andrew Stubbs <ams@codesourcery.com>
|
||||
|
||||
* gcc.target/gcn/fpdiv.c: Remove the -ffast-math requirement.
|
||||
|
||||
2023-04-26 Richard Biener <rguenther@suse.de>
|
||||
|
||||
Backported from master:
|
||||
2023-04-25 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/109609
|
||||
* gcc.dg/torture/pr109609.c: New testcase.
|
||||
|
||||
2023-04-26 Richard Biener <rguenther@suse.de>
|
||||
|
||||
Backported from master:
|
||||
2023-04-25 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR rtl-optimization/109585
|
||||
* gcc.dg/torture/pr109585.c: New testcase.
|
||||
|
||||
2023-04-26 Richard Biener <rguenther@suse.de>
|
||||
|
||||
Backported from master:
|
||||
2023-04-21 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/109573
|
||||
* g++.dg/vect/pr109573.cc: New testcase.
|
||||
|
||||
2023-04-26 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
Backported from master:
|
||||
2023-04-25 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* g++.dg/cpp23/ext-floating2.C: Add dg-add-options for
|
||||
float16, float32, float64 and float128.
|
||||
|
||||
2023-04-26 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
Backported from master:
|
||||
2023-04-25 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c++/109278
|
||||
* g++.dg/cpp23/ext-floating15.C: Add dg-add-options float128.
|
||||
|
||||
2023-04-26 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
Backported from master:
|
||||
2023-04-20 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c/107041
|
||||
* gcc.dg/goacc/pr107041.c: New test.
|
||||
|
||||
2023-04-26 Release Manager
|
||||
|
||||
* GCC 13.1.0 released.
|
||||
|
@ -1,3 +1,9 @@
|
||||
2023-04-26 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* configure.ac (TOOLS_TARGET_PAIRS): Remove obsolete settings.
|
||||
(EXTRA_GNATTOOLS): Likewise.
|
||||
* configure: Regenerate.
|
||||
|
||||
2023-04-26 Release Manager
|
||||
|
||||
* GCC 13.1.0 released.
|
||||
|
Loading…
x
Reference in New Issue
Block a user