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-release-arm-bootstrap_debug in repository toolchain/ci/gcc.
from 72a3f203348 Daily bump. adds 5b4b18b8922 libstdc++: Install libstdc++*-gdb.py more robustly [PR 99453] adds a937d0269c1 libstdc++: Fix installation of python hooks [PR 99453] adds e01562b302e libstdc++: Change [range.iter.op] functions to function obj [...] adds 753c8680a46 libstdc++: Fix return value of std::ranges::advance [PR 100833] adds 8c96fef45c6 Daily bump. adds fe28b9da8f8 arm: Fix ICE with CMSE nonsecure calls on Armv8.1-M [PR100333] adds df45c5b8344 Fortran - ICE in inline_matmul_assign adds dcc5cf980af d: Fix ICE in gimplify_var_or_parm_decl, at gimplify.c:2755 [...] new bfdff3438f7 Daily bump.
The 1 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 | 9 + gcc/DATESTAMP | 2 +- gcc/config/arm/arm.md | 19 +- gcc/d/ChangeLog | 14 + gcc/d/d-codegen.cc | 36 +- gcc/d/expr.cc | 7 +- gcc/fortran/ChangeLog | 10 + gcc/fortran/frontend-passes.c | 13 + gcc/testsuite/ChangeLog | 27 ++ gcc/testsuite/gcc.target/arm/cmse/pr100333.c | 7 + gcc/testsuite/gdc.dg/pr100882a.d | 21 ++ gcc/testsuite/gdc.dg/pr100882b.d | 35 ++ gcc/testsuite/gdc.dg/pr100882c.d | 19 + gcc/testsuite/gdc.dg/pr100882d.d | 25 ++ gcc/testsuite/gfortran.dg/inline_matmul_25.f90 | 9 + libstdc++-v3/ChangeLog | 47 +++ libstdc++-v3/include/bits/range_access.h | 381 +++++++++++---------- libstdc++-v3/python/Makefile.am | 24 +- libstdc++-v3/python/Makefile.in | 18 +- .../headers/iterator/synopsis_c++20.cc | 25 +- .../24_iterators/range_operations/100768.cc | 128 +++++++ .../24_iterators/range_operations/advance.cc | 48 ++- .../testsuite/std/ranges/adaptors/elements.cc | 3 + .../testsuite/std/ranges/adaptors/transform.cc | 3 + 24 files changed, 665 insertions(+), 265 deletions(-) create mode 100644 gcc/testsuite/gcc.target/arm/cmse/pr100333.c create mode 100644 gcc/testsuite/gdc.dg/pr100882a.d create mode 100644 gcc/testsuite/gdc.dg/pr100882b.d create mode 100644 gcc/testsuite/gdc.dg/pr100882c.d create mode 100644 gcc/testsuite/gdc.dg/pr100882d.d create mode 100644 gcc/testsuite/gfortran.dg/inline_matmul_25.f90 create mode 100644 libstdc++-v3/testsuite/24_iterators/range_operations/100768.cc