This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-master-arm-bootstrap_lto in repository toolchain/ci/gcc.
from 92d4550991d Daily bump. adds 2d9588bac5a predcom: Refactor more using auto_vec adds 62acc72a957 unroll: Avoid unnecessary tail loops for constant niters adds 957952ce64e unroll: Run VN on unrolled-and-jammed loops adds b3d4011ba10 Fortran: Fix bind(C) character length checks adds aea199f96cf c++: Ensure OpenMP reduction with reference type references [...] adds b136b7a7877 openmp: Fix up omp_check_private [PR101535] adds e0335bb7d1f Revert "RISC-V: Detect python and pick best one for calling [...] adds f8884b9c51f gcov: Fix use of profile info section adds e4d306cf706 c++tools, configury: Configure with C++; test checking stat [...] adds 8edb6142050 libstdc++: Make __gnu_cxx::sequence_buffer move-aware [PR101542] new b937dbf2577 Adjust macro to avoid warning [PR101379]. new c2b15fe27e6 Fortran: ICE, OOM while calculating sizes of derived type a [...]
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: c++tools/config.h.in | 3 + c++tools/configure | 761 +++------------------ c++tools/configure.ac | 31 + c++tools/server.cc | 28 + gcc/config.gcc | 3 +- gcc/coverage.c | 2 + gcc/cp/semantics.c | 3 +- gcc/fortran/decl.c | 113 ++- gcc/fortran/target-memory.c | 3 + gcc/fortran/trans-expr.c | 18 +- gcc/fortran/trans-types.c | 4 +- gcc/gimple-loop-jam.c | 14 +- gcc/gimplify.c | 21 +- gcc/testsuite/c-c++-common/gomp/pr101535-1.c | 31 + gcc/testsuite/c-c++-common/gomp/pr101535-2.c | 11 + gcc/testsuite/g++.dg/gomp/pr101516.C | 8 + gcc/testsuite/gcc.dg/unroll-10.c | 13 + gcc/testsuite/gcc.dg/unroll-9.c | 12 + gcc/testsuite/gfortran.dg/bind_c_char_10.f90 | 480 +++++++++++++ gcc/testsuite/gfortran.dg/bind_c_char_6.f90 | 262 +++++++ gcc/testsuite/gfortran.dg/bind_c_char_7.f90 | 261 +++++++ gcc/testsuite/gfortran.dg/bind_c_char_8.f90 | 249 +++++++ gcc/testsuite/gfortran.dg/bind_c_char_9.f90 | 188 +++++ gcc/testsuite/gfortran.dg/iso_c_binding_char_1.f90 | 2 +- gcc/testsuite/gfortran.dg/pr101514.f90 | 35 + gcc/testsuite/gfortran.dg/pr32599.f03 | 8 +- gcc/tree-data-ref.c | 4 +- gcc/tree-data-ref.h | 4 +- gcc/tree-predcom.c | 248 +++---- gcc/tree-ssa-loop-manip.c | 306 +++++---- libatomic/config/linux/arm/host-config.h | 8 +- libstdc++-v3/include/ext/rope | 9 +- libstdc++-v3/testsuite/ext/rope/101542.cc | 27 + 33 files changed, 2186 insertions(+), 984 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/pr101535-1.c create mode 100644 gcc/testsuite/c-c++-common/gomp/pr101535-2.c create mode 100644 gcc/testsuite/g++.dg/gomp/pr101516.C create mode 100644 gcc/testsuite/gcc.dg/unroll-10.c create mode 100644 gcc/testsuite/gcc.dg/unroll-9.c create mode 100644 gcc/testsuite/gfortran.dg/bind_c_char_10.f90 create mode 100644 gcc/testsuite/gfortran.dg/bind_c_char_6.f90 create mode 100644 gcc/testsuite/gfortran.dg/bind_c_char_7.f90 create mode 100644 gcc/testsuite/gfortran.dg/bind_c_char_8.f90 create mode 100644 gcc/testsuite/gfortran.dg/bind_c_char_9.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr101514.f90 create mode 100644 libstdc++-v3/testsuite/ext/rope/101542.cc