This is an automated email from the git hooks/post-receive script.
tcwg-benchmark pushed a change to branch linaro-local/ci/tcwg_bmk_stm32/gnu_eabi-release-arm-eabi-coremark-O3_LTO in repository toolchain/ci/gcc.
from 25ded800995 Daily bump. adds 6770d499240 Daily bump. adds 0124a9af406 Daily bump. adds d0b3fd419c4 Daily bump. adds f448af69b20 Fortran: Fix scalarization of constant expressions. [PR94246]. adds 101873f2432 This patch fixes PR96320. See the explanatory comment in th [...] adds b7be64f9079 Fortran: Delay vtab generation until after parsing [PR92587] adds 2bfcf6011a6 PR fortran/96381 - invalid read in gfc_find_derived_vtab adds 45300bef458 Daily bump. adds f5b4858e5aa Daily bump. adds 9c7a3bf73df Fix PR testsuite/90806 on the 9 branch adds b82d7465fb3 [Fortran] Fix name conflict check for use-assoc (PR 92736) adds b7c47eee95a Daily bump. adds 3d85846b179 Sync gcc-changelog scripts. adds e780e940a9f As well as the PR this patch fixes problems in handling cla [...] adds 1fa1430d1cf Fix failures with -m32 and some memory leaks. adds b66dc7d363d This patch fixes PR96325. See the explanatory comment in th [...] adds 4d3d6343903 Change testcase for pr96325 from run to compile. adds ef7d053ea33 PR fortran/78746 - invalid access after error recovery adds 6fab822465a Daily bump. adds 0865ed377b0 Daily bump. adds 8e4642602b0 Daily bump. adds 390ecc23210 Daily bump.
No new revisions were added by this update.
Summary of changes: contrib/ChangeLog | 8 + contrib/gcc-changelog/git_commit.py | 57 ++- contrib/gcc-changelog/git_email.py | 6 +- contrib/gcc-changelog/git_repository.py | 6 +- contrib/gcc-changelog/test_email.py | 24 +- contrib/gcc-changelog/test_patches.txt | 81 +++- gcc/ChangeLog | 6 + gcc/DATESTAMP | 2 +- gcc/fortran/ChangeLog | 122 ++++++ gcc/fortran/class.c | 4 +- gcc/fortran/expr.c | 12 +- gcc/fortran/interface.c | 19 +- gcc/fortran/match.c | 3 - gcc/fortran/module.c | 26 +- gcc/fortran/primary.c | 13 +- gcc/fortran/resolve.c | 7 +- gcc/fortran/trans-array.c | 457 +++++++++++++++------ gcc/fortran/trans-expr.c | 337 +++++++++++++-- gcc/fortran/trans.c | 9 +- gcc/fortran/trans.h | 3 + gcc/testsuite/ChangeLog | 55 +++ gcc/testsuite/gfortran.dg/bessel_5_redux.f90 | 85 ++++ gcc/testsuite/gfortran.dg/class_allocate_25.f90 | 58 +++ gcc/testsuite/gfortran.dg/class_assign_4.f90 | 183 +++++++++ gcc/testsuite/gfortran.dg/dependency_60.f90 | 19 + gcc/testsuite/gfortran.dg/finalize_37.f90 | 80 ++++ gcc/testsuite/gfortran.dg/module_procedure_4.f90 | 63 +++ gcc/testsuite/gfortran.dg/pr91589.f90 | 2 +- gcc/testsuite/gfortran.dg/pr96325.f90 | 21 + .../gfortran.dg/unlimited_polymorphic_32.f03 | 59 +++ gcc/testsuite/gfortran.dg/use_rename_10.f90 | 28 ++ gcc/testsuite/gfortran.dg/use_rename_11.f90 | 79 ++++ gcc/wide-int.h | 3 +- 33 files changed, 1732 insertions(+), 205 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/bessel_5_redux.f90 create mode 100644 gcc/testsuite/gfortran.dg/class_allocate_25.f90 create mode 100644 gcc/testsuite/gfortran.dg/class_assign_4.f90 create mode 100644 gcc/testsuite/gfortran.dg/dependency_60.f90 create mode 100644 gcc/testsuite/gfortran.dg/finalize_37.f90 create mode 100644 gcc/testsuite/gfortran.dg/module_procedure_4.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr96325.f90 create mode 100644 gcc/testsuite/gfortran.dg/unlimited_polymorphic_32.f03 create mode 100644 gcc/testsuite/gfortran.dg/use_rename_10.f90 create mode 100644 gcc/testsuite/gfortran.dg/use_rename_11.f90