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-master-aarch64-lts-allyesconfig in repository toolchain/ci/gcc.
from f9d2def0164 tree-optimization/94234 - Fold plusminus_mult expr with mul [...] adds 972da557463 OpenMP/Fortran: Fix (re)mapping of allocatable/pointer arra [...] adds 0f079e104a8 i386: Fix up vector mul and div with broadcasts in -masm=in [...] adds ecc3135a4a2 Retune mask <->integer cost for non-AVX512 micro-architecture. adds 80297f89775 arm: Fix testisms introduced with fix for pr target/95646 adds c9de716a59c Allow more BB vectorization adds bab58138168 bb-reorder: Fix for ICEs caused by 69ca5f3a9882 adds 9e89fa0e2d7 gcc.target/i386/pr78904-4a.c: Compile with -mtune=generic adds 8f0d743c2de tree-optimization/94234 - add plusminus-with-convert pattern adds 3304888c252 c++: Partially revert: local externs in templates do not ge [...] adds d876184c095 make swap argument of vect_get_and_check_slp_defs readonly adds d1a31689a73 rtlanal: fix subreg handling in set_noop_p () adds 1b9bdd52037 libgomp/target.c: Silence -Wuninitialized warning adds 50ddbd0282e analyzer: fix ICE when merging constraints w/o transitivity [...] adds 9f7ab8c5614 Daily bump. adds 1d7d3f91abe libgo: additional type/const references in sysinfo.c adds 3f3f28de3f6 rs6000: Fix misnamed built-in adds 01d56aeaffa C-SKY: Support -mfloat-abi=hard.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 72 ++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 7 + gcc/analyzer/constraint-manager.cc | 10 +- gcc/bb-reorder.c | 4 + gcc/config/arm/arm.c | 2 +- gcc/config/csky/csky-protos.h | 2 + gcc/config/csky/csky.c | 96 +++++++++-- gcc/config/csky/csky.h | 34 +++- gcc/config/csky/csky.md | 84 ++++++++++ gcc/config/i386/sse.md | 4 +- gcc/config/i386/x86-tune-costs.h | 88 +++++----- gcc/config/rs6000/rs6000-call.c | 2 +- gcc/cp/ChangeLog | 13 ++ gcc/cp/cp-gimplify.c | 2 +- gcc/cp/cp-tree.h | 2 +- gcc/cp/pt.c | 14 +- gcc/cp/semantics.c | 4 +- gcc/fortran/ChangeLog | 9 + gcc/fortran/trans-openmp.c | 31 +++- gcc/fortran/trans.h | 2 +- gcc/gimplify.c | 25 ++- gcc/go/gofrontend/MERGE | 2 +- gcc/langhooks-def.h | 2 +- gcc/langhooks.c | 2 +- gcc/langhooks.h | 2 +- gcc/match.pd | 15 ++ gcc/omp-low.c | 1 + gcc/rtlanal.c | 4 + gcc/testsuite/ChangeLog | 36 ++++ gcc/testsuite/gcc.dg/analyzer/pr96650-1-notrans.c | 30 ++++ gcc/testsuite/gcc.dg/analyzer/pr96650-1-trans.c | 30 ++++ gcc/testsuite/gcc.dg/analyzer/pr96650-2-notrans.c | 30 ++++ gcc/testsuite/gcc.dg/analyzer/pr96650-2-trans.c | 30 ++++ gcc/testsuite/gcc.dg/builtin-apply2.c | 2 +- gcc/testsuite/gcc.dg/pr94234-3.c | 42 +++++ .../gcc.dg/torture/stackalign/builtin-apply-2.c | 2 +- gcc/testsuite/gcc.dg/vect/bb-slp-48.c | 55 ++++++ gcc/testsuite/gcc.dg/vect/bb-slp-7.c | 3 +- gcc/testsuite/gcc.target/arm/pr95646.c | 11 +- gcc/testsuite/gcc.target/i386/avx512f-pr97028.c | 18 ++ gcc/testsuite/gcc.target/i386/pr78904-4a.c | 2 +- gcc/tree-vect-slp.c | 80 +++++---- include/ChangeLog | 5 + include/gomp-constants.h | 3 + libgo/sysinfo.c | 2 + libgomp/ChangeLog | 20 +++ libgomp/libgomp.h | 3 + libgomp/target.c | 184 ++++++++++++++++----- .../testsuite/libgomp.fortran/map-alloc-ptr-1.f90 | 114 +++++++++++++ .../testsuite/libgomp.fortran/map-alloc-ptr-2.f90 | 86 ++++++++++ 51 files changed, 1148 insertions(+), 177 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr96650-1-notrans.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr96650-1-trans.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr96650-2-notrans.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr96650-2-trans.c create mode 100644 gcc/testsuite/gcc.dg/pr94234-3.c create mode 100644 gcc/testsuite/gcc.dg/vect/bb-slp-48.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512f-pr97028.c create mode 100644 libgomp/testsuite/libgomp.fortran/map-alloc-ptr-1.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/map-alloc-ptr-2.f90