This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_tx1/llvm-release-aarch64-spec2k6-O3_LTO in repository toolchain/ci/gcc.
from 290103317c6 Daily bump. adds d3f3b28dcd3 Daily bump. adds 0f225e57427 Fortran: Reject DT as fmt in I/O statments [PR99111] adds 0011e697506 aarch64: Introduce prefer_advsimd_autovec to GCC 10 adds 82560ad9d00 Daily bump. adds 866ef25bb49 Daily bump. adds 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. new ce4960668cc 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 | 21 + gcc/DATESTAMP | 2 +- gcc/config/aarch64/aarch64-cost-tables.h | 103 +++++ gcc/config/aarch64/aarch64-tuning-flags.def | 3 + gcc/config/aarch64/aarch64.c | 63 ++- gcc/config/pa/pa.c | 504 ++++++++++++++------- gcc/fortran/ChangeLog | 47 ++ gcc/fortran/io.c | 7 + gcc/fortran/resolve.c | 11 +- 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 | 40 ++ .../gcc.target/aarch64/advsimd_autovec_only_1.c | 13 + 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/fmt_nonchar_1.f90 | 46 ++ gcc/testsuite/gfortran.dg/fmt_nonchar_2.f90 | 22 + gcc/testsuite/gfortran.dg/intent_optimize_3.f90 | 16 + gcc/testsuite/gfortran.dg/ubound_1.f90 | 22 + libgcc/ChangeLog | 9 + libgcc/config/arm/t-arm | 2 +- libgomp/ChangeLog | 8 + .../testsuite/libgomp.fortran/dummy-procs-1.f90 | 393 ++++++++++++++++ 26 files changed, 1258 insertions(+), 175 deletions(-) create mode 100644 gcc/testsuite/gcc.target/aarch64/advsimd_autovec_only_1.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/fmt_nonchar_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/fmt_nonchar_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 libgomp/testsuite/libgomp.fortran/dummy-procs-1.f90