This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-arm-bootstrap_O1 in repository toolchain/ci/gcc.
from 4c61300f2b2 Daily bump. adds 6f449bb93b3 openmp: Diagnose threadprivate OpenMP loop iterators adds 70c947e4dfa Implied compares in Ada Harded Conditionals documentation adds d18e4cc416b Fortran: generate regular error on invalid conversions of C [...] adds db3f6783bde Fortran: update gfortran.texi list of frequent reporters adds 75c9fa318e3 Fix memory leak of gsymbol adds f6a719c3fad Fortran: improve formatting of tables in intrinsic.texi adds 061245e8322 Fortran: fix descriptions in intrinsic.texi adds 6888b7974b3 Fortran: non-standard intrinsics SHORT and LONG have been removed adds 90ba129c9d7 Fortran: remove descriptions of SHORT and LONG in intrinsic.texi adds 948d461954f OpenMP: Add strictly nested API call check [PR102972] adds 0ef944629ae Daily bump. adds a16010a3eed Fortran: Silence -Wmaybe-uninitialized warning adds 1b5f7385841 d: Fix pr96435.d failing on SPARC and HPPA adds d41092ec52f d: Fix regressing test failures on ix86-solaris2.11 adds ca84f39399f Improve handling of return slot in ipa-pure-const and modref. adds 6ea6c05a8d4 Fortran: Revert explicit memcpy in gfc_get_typebound_proc adds 3a4a721e0cd Daily bump. adds 7a71ea4df7e libcody: add mostlyclean Makefile target new f35af8df241 Refactor loop_version new 4851c80ce8d Rename duplicate_loop_to_header_edge to duplicate_loop_body [...]
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 | 21 ++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 5 + .../doc/gnat_rm/security_hardening_features.rst | 7 +- gcc/cfghooks.c | 27 ++- gcc/cfghooks.h | 18 +- gcc/cfgloopmanip.c | 124 ++++-------- gcc/cfgloopmanip.h | 9 +- gcc/cfgrtl.c | 2 +- gcc/doc/loop.texi | 4 +- gcc/fortran/ChangeLog | 41 ++++ gcc/fortran/check.c | 2 +- gcc/fortran/gfortran.texi | 1 + gcc/fortran/intrinsic.texi | 214 ++++++++------------- gcc/fortran/parse.c | 18 +- gcc/fortran/resolve.c | 6 +- gcc/fortran/symbol.c | 2 +- gcc/gimplify.c | 18 ++ gcc/ipa-fnsummary.c | 16 +- gcc/ipa-modref.c | 2 +- gcc/loop-unroll.c | 78 +++----- gcc/omp-low.c | 31 ++- gcc/testsuite/ChangeLog | 32 +++ gcc/testsuite/c-c++-common/gomp/loop-10.c | 35 ++++ .../c-c++-common/gomp/target-device-ancestor-3.c | 2 + gcc/testsuite/c-c++-common/gomp/teams-3.c | 64 ++++++ gcc/testsuite/g++.dg/ipa/modref-1.C | 35 ++++ gcc/testsuite/gdc.dg/torture/pr96435.d | 2 +- gcc/testsuite/gfortran.dg/gomp/order-6.f90 | 2 +- gcc/testsuite/gfortran.dg/gomp/teams-3.f90 | 65 +++++++ gcc/testsuite/gfortran.dg/gomp/teams-4.f90 | 47 +++++ gcc/testsuite/gfortran.dg/intrinsic_short-long.f90 | 11 ++ gcc/testsuite/gfortran.dg/pr99853.f90 | 29 +++ gcc/tree-cfg.c | 2 +- gcc/tree-ssa-loop-ivcanon.c | 16 +- gcc/tree-ssa-loop-manip.c | 22 ++- gcc/tree-ssa-loop-manip.h | 7 +- libcody/Makefile.in | 20 +- libgomp/ChangeLog | 19 ++ libgomp/testsuite/libgomp.c-c++-common/icv-3.c | 3 + libgomp/testsuite/libgomp.c-c++-common/icv-4.c | 1 + libgomp/testsuite/libgomp.c/target-3.c | 6 +- libgomp/testsuite/libgomp.c/target-5.c | 1 + libgomp/testsuite/libgomp.c/target-6.c | 12 +- libgomp/testsuite/libgomp.c/target-teams-1.c | 115 ++++++++--- libgomp/testsuite/libgomp.c/teams-1.c | 6 +- libgomp/testsuite/libgomp.c/thread-limit-2.c | 21 +- libgomp/testsuite/libgomp.c/thread-limit-3.c | 1 + libgomp/testsuite/libgomp.c/thread-limit-4.c | 25 ++- libgomp/testsuite/libgomp.c/thread-limit-5.c | 1 + libgomp/testsuite/libgomp.fortran/icv-3.f90 | 6 + libgomp/testsuite/libgomp.fortran/icv-4.f90 | 2 + libgomp/testsuite/libgomp.fortran/teams1.f90 | 16 +- libphobos/ChangeLog | 6 + libphobos/libdruntime/gcc/deh.d | 2 +- 55 files changed, 852 insertions(+), 430 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/loop-10.c create mode 100644 gcc/testsuite/c-c++-common/gomp/teams-3.c create mode 100644 gcc/testsuite/g++.dg/ipa/modref-1.C create mode 100644 gcc/testsuite/gfortran.dg/gomp/teams-3.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/teams-4.f90 create mode 100644 gcc/testsuite/gfortran.dg/intrinsic_short-long.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr99853.f90