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-arm-mainline-allnoconfig in repository toolchain/ci/gcc.
from 380db7dfd28 Daily bump. adds 12938501b8a libphobos: Don't call __gthread_key_delete in the emutls de [...] adds dc3630e05d7 libphobos: Increase size of defaultStackPages on OSX X86_64 [...] adds 753cd5f3615 Do not abort compilation when dump file is /dev/* adds c2079b9a787 Daily bump. adds 11013a48023 Daily bump. adds d800a6e07bb Daily bump. adds eb8ff3cbc09 Don't allow mask/sse/mmx mov in TLS code sequences. adds 2936f551ade tree-optimization/102970 - remap cliques when translating o [...] adds 2f0c8f74dae middle-end/103181 - fix operation_could_trap_p for vector division adds 5571c271926 tree-optimization/103204 - fix missed valueization in VN adds fb1bc2c0865 tree-optimization/103237 - avoid vectorizing unhandled doub [...] adds f3c95819647 IBM Z: Fix load-and-test peephole2 condition adds c224f21418e Fortran: fix lookup for gfortran builtin math intrinsics us [...] new 423cd47cfc9 libstdc++: Fix inconsistent noexcept-specific for valarray [...] new 78225f05ce2 Daily bump.
The 2 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 | 64 ++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/config/i386/constraints.md | 5 ++ gcc/config/i386/i386-protos.h | 1 + gcc/config/i386/i386.c | 30 +++++++++ gcc/config/i386/i386.md | 8 +-- gcc/config/s390/s390.md | 2 +- gcc/doc/invoke.texi | 3 +- gcc/fortran/ChangeLog | 14 ++++ gcc/fortran/trans-intrinsic.c | 66 ++++++++++--------- gcc/gcc.c | 3 +- gcc/testsuite/ChangeLog | 56 ++++++++++++++++ gcc/testsuite/g++.dg/opt/pr102970.C | 60 +++++++++++++++++ gcc/testsuite/gcc.dg/devnull-dump.c | 7 ++ gcc/testsuite/gcc.dg/pr103248.c | 8 +++ gcc/testsuite/gcc.dg/torture/pr103181.c | 24 +++++++ gcc/testsuite/gcc.dg/torture/pr103204.c | 16 +++++ gcc/testsuite/gcc.dg/torture/pr103237.c | 24 +++++++ gcc/testsuite/gcc.target/i386/pr103275.c | 83 ++++++++++++++++++++++++ gcc/testsuite/gcc.target/s390/20211119.c | 12 ++++ gcc/testsuite/gfortran.dg/dec_math_5.f90 | 104 ++++++++++++++++++++++++++++++ gcc/tree-eh.c | 32 +++++++-- gcc/tree-ssa-pre.c | 15 +++++ gcc/tree-ssa-sccvn.c | 13 ++-- gcc/tree-vect-loop.c | 11 ++++ libphobos/ChangeLog | 17 +++++ libphobos/libdruntime/core/thread/fiber.d | 10 +++ libphobos/libdruntime/gcc/emutls.d | 6 -- libstdc++-v3/ChangeLog | 8 +++ libstdc++-v3/include/bits/range_access.h | 8 +-- 30 files changed, 653 insertions(+), 59 deletions(-) create mode 100644 gcc/testsuite/g++.dg/opt/pr102970.C create mode 100644 gcc/testsuite/gcc.dg/devnull-dump.c create mode 100644 gcc/testsuite/gcc.dg/pr103248.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr103181.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr103204.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr103237.c create mode 100644 gcc/testsuite/gcc.target/i386/pr103275.c create mode 100644 gcc/testsuite/gcc.target/s390/20211119.c create mode 100644 gcc/testsuite/gfortran.dg/dec_math_5.f90