This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-release-aarch64-lts-allyesconfig in repository toolchain/ci/gcc.
from 80ec76eee96 Daily bump. adds 700dcc60b56 Fortran: Fix ubound simplifcation [PR99027] adds 08f43c8c981 Fortran/OpenMP: Fix optional dummy procedures [PR99171] adds 89b7f2b821e Add mi_thunk support for vcalls on hppa. adds d41bf7f6cc6 Daily bump. adds 041f720c821 aarch64: Add cpu cost tables for A64FX adds e111925dbdd PR fortran/99169 - Do not clobber allocatable intent(out) d [...] adds 626f4f5c659 Daily bump. adds 01af81169f0 Fortran: Fix for class defined operators [PR99124]. adds fcfd5cc0f42 arm: Fix CMSE support detection in libgcc (PR target/99157) adds ef729613cf0 Daily bump. adds ce4960668cc Daily bump. adds c5ba7770768 PR fortran/93340 - fix missed substring simplifications adds 49a93ba6fe1 Daily bump. adds f98a3c8a58b c++: variadic lambda template and empty pack [PR97246] adds f6b1c08e378 c++: Allow GNU attributes before lambda -> [PR90333] adds 23c1d29ccea Daily bump. new 356cd95fc07 Daily bump.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/ChangeLog | 14 + gcc/DATESTAMP | 2 +- gcc/config/aarch64/aarch64-cost-tables.h | 103 +++++ gcc/config/aarch64/aarch64.c | 53 ++- gcc/config/pa/pa.c | 504 ++++++++++++++------- gcc/cp/ChangeLog | 13 + gcc/cp/parser.c | 11 +- gcc/cp/pt.c | 38 +- gcc/fortran/ChangeLog | 49 ++ gcc/fortran/gfortran.h | 1 + gcc/fortran/primary.c | 55 +++ gcc/fortran/resolve.c | 17 +- gcc/fortran/simplify.c | 12 +- gcc/fortran/trans-array.c | 7 +- gcc/fortran/trans-expr.c | 1 + gcc/fortran/trans-openmp.c | 5 +- gcc/testsuite/ChangeLog | 45 ++ .../g++.dg/cpp2a/lambda-generic-variadic21.C | 19 + gcc/testsuite/g++.dg/ext/attr-lambda3.C | 4 + gcc/testsuite/gfortran.dg/class_assign_4.f90 | 12 +- .../gfortran.dg/class_defined_operator_2.f03 | 31 ++ gcc/testsuite/gfortran.dg/elemental_result_2.f90 | 33 ++ gcc/testsuite/gfortran.dg/intent_optimize_3.f90 | 16 + gcc/testsuite/gfortran.dg/ubound_1.f90 | 22 + gcc/testsuite/substr_10.f90 | 11 + gcc/testsuite/substr_9.f90 | 28 ++ libgcc/ChangeLog | 9 + libgcc/config/arm/t-arm | 2 +- libgomp/ChangeLog | 8 + .../testsuite/libgomp.fortran/dummy-procs-1.f90 | 393 ++++++++++++++++ 30 files changed, 1325 insertions(+), 193 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp2a/lambda-generic-variadic21.C create mode 100644 gcc/testsuite/g++.dg/ext/attr-lambda3.C create mode 100644 gcc/testsuite/gfortran.dg/class_defined_operator_2.f03 create mode 100644 gcc/testsuite/gfortran.dg/elemental_result_2.f90 create mode 100644 gcc/testsuite/gfortran.dg/intent_optimize_3.f90 create mode 100644 gcc/testsuite/gfortran.dg/ubound_1.f90 create mode 100644 gcc/testsuite/substr_10.f90 create mode 100644 gcc/testsuite/substr_9.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/dummy-procs-1.f90