This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_tk1/gnu-release-arm-spec2k6-O3 in repository toolchain/ci/gcc.
from 38e0d26587e Daily bump. adds 2435878321b modulo-sched: Carefully process loop counter initialization [...] adds dba421da877 Daily bump. adds 96a2c794eb8 Daily bump. adds a07cb501cd9 Daily bump. adds 6a5fa636d32 i386: Fix __builtin_trunc with FE_DOWNWARD rounding directi [...] adds bfe4f9f83d9 Daily bump. adds f7c9f203a73 rs6000: Add support for powerpc64le-unknown-freebsd adds 9db58db5b39 This patch fixes PRs 96100 and 96101. adds 5012380fe15 i386: Fix __builtin_rint with FE_DOWNWARD rounding directio [...] adds f2d3dc43d6b Daily bump. adds e1f0f6eea7d Darwin, libgfortran : Do not use environ directly from the [...] adds d8d1358a4a6 libobjc, Darwin : Fix powerpc encoding regression. adds fe37f4aac17 PR fortran/93685 - ICE in gfc_constructor_append_expr, at f [...] adds 4b00a759827 Daily bump. adds 608ac6041d1 Daily bump. adds 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. new b66dc7d363d This patch fixes PR96325. See the explanatory comment in th [...] new 4d3d6343903 Change testcase for pr96325 from run to compile. new ef7d053ea33 PR fortran/78746 - invalid access after error recovery new 6fab822465a Daily bump.
The 4 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: 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 | 44 ++ gcc/DATESTAMP | 2 +- gcc/config.gcc | 4 + gcc/config/i386/i386.c | 41 +- gcc/config/rs6000/freebsd64.h | 12 +- gcc/configure | 3 + gcc/configure.ac | 3 + gcc/fortran/ChangeLog | 146 +++++++ gcc/fortran/class.c | 4 +- gcc/fortran/data.c | 7 +- 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 | 478 +++++++++++++++------ gcc/fortran/trans-expr.c | 349 +++++++++++++-- gcc/fortran/trans.c | 9 +- gcc/fortran/trans.h | 3 + gcc/modulo-sched.c | 71 +-- gcc/testsuite/ChangeLog | 92 ++++ gcc/testsuite/gcc.c-torture/execute/pr97421-1.c | 23 + gcc/testsuite/gcc.c-torture/execute/pr97421-2.c | 18 + gcc/testsuite/gcc.c-torture/execute/pr97421-3.c | 22 + gcc/testsuite/gcc.target/i386/pr96793-1.c | 28 ++ gcc/testsuite/gcc.target/i386/pr96793-2.c | 28 ++ gcc/testsuite/gfortran.dg/bessel_5_redux.f90 | 85 ++++ gcc/testsuite/gfortran.dg/char_length_23.f90 | 25 ++ 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/pr93685_1.f90 | 20 + gcc/testsuite/gfortran.dg/pr93685_2.f90 | 18 + 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 +- libgfortran/ChangeLog | 8 + libgfortran/intrinsics/execute_command_line.c | 5 + libobjc/ChangeLog | 8 + libobjc/encoding.c | 3 +- 52 files changed, 2145 insertions(+), 271 deletions(-) create mode 100644 gcc/testsuite/gcc.c-torture/execute/pr97421-1.c create mode 100644 gcc/testsuite/gcc.c-torture/execute/pr97421-2.c create mode 100644 gcc/testsuite/gcc.c-torture/execute/pr97421-3.c create mode 100644 gcc/testsuite/gcc.target/i386/pr96793-1.c create mode 100644 gcc/testsuite/gcc.target/i386/pr96793-2.c create mode 100644 gcc/testsuite/gfortran.dg/bessel_5_redux.f90 create mode 100644 gcc/testsuite/gfortran.dg/char_length_23.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/pr93685_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr93685_2.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