Daily bump.

This commit is contained in:
GCC Administrator 2024-07-20 00:17:53 +00:00
parent 01c095ab77
commit 8d6498f0d7
8 changed files with 165 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2024-07-19 Richard Biener <rguenther@suse.de>
* gcc-changelog/git_update_version.py: Remove gcc-11 branch.
2024-07-13 Richard Sandiford <richard.sandiford@arm.com> 2024-07-13 Richard Sandiford <richard.sandiford@arm.com>
* check-MAINTAINERS.py (sort_by_surname): Replace with... * check-MAINTAINERS.py (sort_by_surname): Replace with...

View File

@ -1,3 +1,52 @@
2024-07-19 Andrew MacLeod <amacleod@redhat.com>
PR tree-optimization/116003
* value-relation.cc (equiv_oracle::register_initial_def): Check
if SSA_NAME is in the IL before registering.
2024-07-19 Thomas Schwinge <tschwinge@baylibre.com>
* passes.def: Rewrite usage comment at the top.
2024-07-19 Richard Sandiford <richard.sandiford@arm.com>
PR middle-end/115406
* fold-const.cc (native_encode_vector_part): For vector booleans,
check whether an element is nonzero and, if so, set all of the
correspending bits in the target image.
* simplify-rtx.cc (native_encode_rtx): Likewise.
2024-07-19 Georg-Johann Lay <avr@gjlay.de>
* config/avr/builtins.def (MASK1): New DEF_BUILTIN.
* config/avr/avr.cc (avr_rtx_costs_1): Handle rtx costs for
expressions like __builtin_avr_mask1.
(avr_init_builtins) <uintQI_ftype_uintQI_uintQI>: New tree type.
(avr_expand_builtin) [AVR_BUILTIN_MASK1]: Diagnose unexpected forms.
(avr_fold_builtin) [AVR_BUILTIN_MASK1]: Handle case.
* config/avr/avr.md (gen_mask1): New expand helper.
(mask1_0x01_split, mask1_0x80_split, mask1_0xfe_split): New
insn-and-split.
(*mask1_0x01, *mask1_0x80, *mask1_0xfe): New insns.
* doc/extend.texi (AVR Built-in Functions) <__builtin_avr_mask1>:
Document new built-in function.
2024-07-19 Cupertino Miranda <cupertino.miranda@oracle.com>
* config/bpf/atomic.md (atomic_compare_and_swap,
atomic_exchange): Add operand modifier %M to the first
operand.
* config/bpf/bpf.cc (no_parentheses_mem_operand): Create
variable.
(bpf_print_operand): Set no_parentheses_mem_operand variable if
%M operand is used.
(bpf_print_operand_address): Conditionally output parentheses.
2024-07-19 Pan Li <pan2.li@intel.com>
PR target/115863
* match.pd: Add single_use check for .SAT_TRUNC form 2.
2024-07-18 René Rebe <rene@exactcode.de> 2024-07-18 René Rebe <rene@exactcode.de>
Peter Bergner <bergner@linux.ibm.com> Peter Bergner <bergner@linux.ibm.com>

View File

@ -1 +1 @@
20240719 20240720

View File

@ -1,3 +1,25 @@
2024-07-19 Patrick Palka <ppalka@redhat.com>
PR c++/115783
* call.cc (build_new_method_call): Generalize METHOD_TYPE
check to DECL_OBJECT_MEMBER_FUNCTION_P.
2024-07-19 Seyed Sajad Kahani <sska1377@gmail.com>
* constraint.cc (hash_placeholder_constraint): Rename to
iterative_hash_placeholder_constraint.
(iterative_hash_placeholder_constraint): Rename from
hash_placeholder_constraint and add the initial val argument.
* cp-tree.h (hash_placeholder_constraint): Rename to
iterative_hash_placeholder_constraint.
(iterative_hash_placeholder_constraint): Renamed from
hash_placeholder_constraint and add the initial val argument.
* pt.cc (struct ctp_hasher): Updated to use
iterative_hash_placeholder_constraint in the case of a valid placeholder
constraint.
(auto_hash::hash): Reflect the renaming of hash_placeholder_constraint to
iterative_hash_placeholder_constraint.
2024-07-18 Marek Polacek <polacek@redhat.com> 2024-07-18 Marek Polacek <polacek@redhat.com>
PR c++/108769 PR c++/108769

View File

@ -1,3 +1,12 @@
2024-07-19 Harald Anlauf <anlauf@gmx.de>
PR fortran/103115
* trans-array.cc (gfc_trans_array_constructor_value): If the first
element of an array constructor is deferred-length character and
therefore does not have an element size known at compile time, do
not try to collect subsequent constant elements into a constructor
for optimization.
2024-07-18 Andre Vehreschild <vehre@gcc.gnu.org> 2024-07-18 Andre Vehreschild <vehre@gcc.gnu.org>
PR fortran/78466 PR fortran/78466

View File

@ -1,3 +1,60 @@
2024-07-19 Andrew MacLeod <amacleod@redhat.com>
PR tree-optimization/116003
* gcc.dg/pr116003.c: New.
2024-07-19 Richard Sandiford <richard.sandiford@arm.com>
PR middle-end/115406
* gcc.dg/torture/pr115406.c: New test.
2024-07-19 Richard Sandiford <richard.sandiford@arm.com>
* gcc.target/arm/fp16-aapcs-2.c: Expect the return value to be
loaded directly from the stack. Test that the swap generates
two moves out of r0/r1 and two moves in.
* gcc.target/arm/fp16-aapcs-4.c: Likewise.
2024-07-19 Patrick Palka <ppalka@redhat.com>
PR c++/115783
* g++.dg/cpp23/explicit-obj-diagnostics11.C: New test.
2024-07-19 Georg-Johann Lay <avr@gjlay.de>
* gcc.target/avr/torture/builtin-mask1.c: New test.
2024-07-19 Harald Anlauf <anlauf@gmx.de>
PR fortran/103115
* gfortran.dg/string_array_constructor_4.f90: New test.
2024-07-19 Peter Bergner <bergner@linux.ibm.com>
PR target/114759
PR target/115988
* gcc.target/powerpc/pr114759-3.c: Catch unsupported ABI errors.
2024-07-19 Patrick Palka <ppalka@redhat.com>
PR c++/109464
* g++.dg/template/explicit-instantiation8.C: New test.
2024-07-19 Cupertino Miranda <cupertino.miranda@oracle.com>
* gcc.target/bpf/pseudoc-atomic-memaddr-op.c: Add test.
2024-07-19 Jakub Jelinek <jakub@redhat.com>
PR c++/114460
* g++.dg/cpp26/aggr-init1.C: New test.
* g++.dg/cpp26/aggr-init2.C: New test.
2024-07-19 Pan Li <pan2.li@intel.com>
PR target/115863
* gcc.target/i386/pr115863-1.c: New test.
2024-07-18 Marek Polacek <polacek@redhat.com> 2024-07-18 Marek Polacek <polacek@redhat.com>
PR c++/108769 PR c++/108769

View File

@ -1,3 +1,22 @@
2024-07-19 Thomas Schwinge <tschwinge@baylibre.com>
* config/gcn/target.c (GOMP_teams4): Document.
* config/nvptx/target.c (GOMP_teams4): Likewise.
* target.c (GOMP_teams4): Likewise.
2024-07-19 Thomas Schwinge <tschwinge@baylibre.com>
* config/gcn/libgomp-gcn.h (GOMP_TEAM_NUM): Inject.
* config/gcn/target.c (GOMP_teams4): Handle.
* config/gcn/team.c (gomp_gcn_enter_kernel): Initialize.
* config/gcn/teams.c (omp_get_team_num): Adjust.
2024-07-19 Paul Thomas <pault@gcc.gnu.org>
* testsuite/libgomp.oacc-fortran/privatized-ref-2.f90: Cut
dg-note about 'a' and remove bogus warnings about its array
descriptor components being used uninitialized.
2024-07-01 Andrew Stubbs <ams@baylibre.com> 2024-07-01 Andrew Stubbs <ams@baylibre.com>
Thomas Schwinge <thomas@codesourcery.com> Thomas Schwinge <thomas@codesourcery.com>

View File

@ -1,3 +1,7 @@
2024-07-19 Richard Biener <rguenther@suse.de>
* crontab: Remove entry for gcc-11 branch.
2024-07-07 Gerald Pfeifer <gerald@pfeifer.com> 2024-07-07 Gerald Pfeifer <gerald@pfeifer.com>
* update_web_docs_git (BUGURL): Switch to https. * update_web_docs_git (BUGURL): Switch to https.