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/release-aarch64-bootstrap_O1 in repository toolchain/ci/gcc.
from b242eb2084d Daily bump. adds a9c54c5ec76 Daily bump. adds 3b0f715744d fortran: Unshare associate var charlen [PR104228] adds 6b4e07251c6 fortran: Separate associate character lengths earlier [PR104570] adds fdaa6de39a5 Fortran: a RECURSIVE procedure cannot be an INTRINSIC adds bf4f606142b Daily bump. adds f049717d8d5 RISC-V: Allow multi-lib build with different code model adds fa21fcfb675 RISC-V: Support -misa-spec for arch-canonicalize and multil [...] adds 20bde90da2a ppc: testsuite: require target effectively [PR104253] adds 7810fdea68d Daily bump. adds 249aa9348dd tree-optimization/105226 - avoid splitting abnormal edges adds 008d568ac7e tree-optimization/105232 - handle overly large sizes in com [...] adds 28ef9276654 tree-optimization/105235 - clean EH in execute_cse_conv_1 adds edf73cf05a9 libstdc++: Implement LWG 3523 changes to ranges::iota_view adds 06309012df2 libstdc++: Implement LWG 3470 change to ranges::subrange adds e88ffd55707 libstdc++: Implement LWG 3580 change to ranges::iota_view adds 60b4a814777 libstdc++: Implement LWG 3481 change to ranges::viewable_range adds b0561bc86b3 libstdc++: Implement LWG 3535 changes to ranges::join_view adds 130b959f233 libstdc++: Implement LWG 3591-3592 changes to split_view adds 813425498f4 libstdc++: Implement LWG 3595 changes to common_iterator
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 24 ++++++ gcc/DATESTAMP | 2 +- gcc/config.gcc | 3 +- gcc/config/riscv/arch-canonicalize | 51 +++++++++--- gcc/config/riscv/multilib-generator | 96 ++++++++++++++-------- gcc/doc/install.texi | 17 ++++ gcc/fortran/ChangeLog | 34 ++++++++ gcc/fortran/intrinsic.c | 1 + gcc/fortran/parse.c | 18 ++++ gcc/fortran/resolve.c | 10 ++- gcc/fortran/trans-stmt.c | 2 +- gcc/testsuite/ChangeLog | 37 +++++++++ gcc/testsuite/g++.dg/opt/pr105235-1.C | 12 +++ gcc/testsuite/gcc.dg/pr105226.c | 23 ++++++ gcc/testsuite/gcc.target/powerpc/pr104253.c | 3 +- gcc/testsuite/gfortran.dg/asan/associate_58.f90 | 19 +++++ gcc/testsuite/gfortran.dg/asan/associate_59.f90 | 19 +++++ gcc/testsuite/gfortran.dg/associate_58.f90 | 21 +++++ .../gfortran.dg/recursive_reference_3.f90 | 14 ++++ gcc/tree-ssa-math-opts.c | 15 ++-- gcc/tree-vect-loop-manip.c | 3 +- gcc/tree.c | 2 + libstdc++-v3/include/bits/ranges_base.h | 3 +- libstdc++-v3/include/bits/ranges_util.h | 13 ++- libstdc++-v3/include/bits/stl_iterator.h | 10 ++- libstdc++-v3/include/std/ranges | 51 ++++++++++-- libstdc++-v3/testsuite/std/ranges/adaptors/all.cc | 15 ++++ .../testsuite/std/ranges/iota/iota_view.cc | 21 +++++ libstdc++-v3/testsuite/std/ranges/subrange/1.cc | 19 +++++ 29 files changed, 481 insertions(+), 77 deletions(-) create mode 100644 gcc/testsuite/g++.dg/opt/pr105235-1.C create mode 100644 gcc/testsuite/gcc.dg/pr105226.c create mode 100644 gcc/testsuite/gfortran.dg/asan/associate_58.f90 create mode 100644 gcc/testsuite/gfortran.dg/asan/associate_59.f90 create mode 100644 gcc/testsuite/gfortran.dg/associate_58.f90 create mode 100644 gcc/testsuite/gfortran.dg/recursive_reference_3.f90 create mode 100644 libstdc++-v3/testsuite/std/ranges/subrange/1.cc