diff --git a/contrib/ChangeLog b/contrib/ChangeLog index e713bf38f8d..4d3a99a7091 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2024-07-19 Richard Biener + + * gcc-changelog/git_update_version.py: Remove gcc-11 branch. + 2024-07-13 Richard Sandiford * check-MAINTAINERS.py (sort_by_surname): Replace with... diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fec580f0805..5cc7190a86d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,52 @@ +2024-07-19 Andrew MacLeod + + 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 + + * passes.def: Rewrite usage comment at the top. + +2024-07-19 Richard Sandiford + + 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 + + * 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) : 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 + + * 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 + + PR target/115863 + * match.pd: Add single_use check for .SAT_TRUNC form 2. + 2024-07-18 René Rebe Peter Bergner diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 92d0274c3c6..6c93b259fd6 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20240719 +20240720 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 4b48bc9578a..bcff971c4ad 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,25 @@ +2024-07-19 Patrick Palka + + 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 + + * 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 PR c++/108769 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 6e5ff2dadbe..d730b07bd67 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,12 @@ +2024-07-19 Harald Anlauf + + 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 PR fortran/78466 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 70cfa7a5d79..3766b6c27be 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,60 @@ +2024-07-19 Andrew MacLeod + + PR tree-optimization/116003 + * gcc.dg/pr116003.c: New. + +2024-07-19 Richard Sandiford + + PR middle-end/115406 + * gcc.dg/torture/pr115406.c: New test. + +2024-07-19 Richard Sandiford + + * 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 + + PR c++/115783 + * g++.dg/cpp23/explicit-obj-diagnostics11.C: New test. + +2024-07-19 Georg-Johann Lay + + * gcc.target/avr/torture/builtin-mask1.c: New test. + +2024-07-19 Harald Anlauf + + PR fortran/103115 + * gfortran.dg/string_array_constructor_4.f90: New test. + +2024-07-19 Peter Bergner + + PR target/114759 + PR target/115988 + * gcc.target/powerpc/pr114759-3.c: Catch unsupported ABI errors. + +2024-07-19 Patrick Palka + + PR c++/109464 + * g++.dg/template/explicit-instantiation8.C: New test. + +2024-07-19 Cupertino Miranda + + * gcc.target/bpf/pseudoc-atomic-memaddr-op.c: Add test. + +2024-07-19 Jakub Jelinek + + PR c++/114460 + * g++.dg/cpp26/aggr-init1.C: New test. + * g++.dg/cpp26/aggr-init2.C: New test. + +2024-07-19 Pan Li + + PR target/115863 + * gcc.target/i386/pr115863-1.c: New test. + 2024-07-18 Marek Polacek PR c++/108769 diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 922e9674545..c5e6004222a 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,22 @@ +2024-07-19 Thomas Schwinge + + * config/gcn/target.c (GOMP_teams4): Document. + * config/nvptx/target.c (GOMP_teams4): Likewise. + * target.c (GOMP_teams4): Likewise. + +2024-07-19 Thomas Schwinge + + * 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 + + * 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 Thomas Schwinge diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog index b80db84fc69..943e097bb6b 100644 --- a/maintainer-scripts/ChangeLog +++ b/maintainer-scripts/ChangeLog @@ -1,3 +1,7 @@ +2024-07-19 Richard Biener + + * crontab: Remove entry for gcc-11 branch. + 2024-07-07 Gerald Pfeifer * update_web_docs_git (BUGURL): Switch to https.