This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-aarch64-build_cross in repository toolchain/ci/gcc.
from 6fc54339634 Fortran - fix conversion to result type for the min/max intrinsic adds 93022946df2 MAINTAINERS: Add myself for write after approval adds 870b674f72d Remove poor value computations. adds cb448ade74d Calculate a global definition if one has not been registered. adds 629cbc682a7 [committed] More useless code elimination on the H8 adds a798b3f15c4 Fix p10 fusion regtests adds cc9c94d43dc libstdc++: Reduce ranges::minmax/minmax_element comparison [...] adds c5581d4842e Daily bump. adds 4123650bd0a libstdc++: Implement LWG 3546 changes to common_iterator adds 15736576df7 libstdc++: Implement LWG 3553 changes to split_view adds bc046a60cfd libstdc++: Implement LWG 3555 changes to transform/elements_view adds b245d1c3d6f Daily bump. new 85a594f7dc8 libstdc++: Define split_view::_InnerIter::base as per P2210 new 3f631671f17 libstdc++: Implement P2210 changes to split_view resolving [...] new adbd2c7102d libstdc++: Implement P2210 changes to rename views::split t [...] new 69d80f0f2f0 libstdc++: Implement new views::split as per P2210
The 4 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: ChangeLog | 4 + MAINTAINERS | 1 + gcc/ChangeLog | 92 +++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 286 +++++++++++++++ gcc/analyzer/ChangeLog | 35 ++ gcc/config/h8300/h8300.c | 2 +- gcc/config/h8300/logical.md | 22 +- gcc/fortran/ChangeLog | 7 + gcc/gimple-range-cache.cc | 141 +------- gcc/gimple-range-cache.h | 15 +- gcc/gimple-range.cc | 2 - gcc/gimple-range.h | 1 - gcc/testsuite/ChangeLog | 32 ++ .../gcc.target/powerpc/fusion-p10-2logical.c | 401 ++++++++------------- .../gcc.target/powerpc/fusion-p10-addadd.c | 17 +- .../gcc.target/powerpc/fusion-p10-ldcmpi.c | 10 +- .../gcc.target/powerpc/fusion-p10-logadd.c | 129 ++----- libstdc++-v3/ChangeLog | 136 +++++++ libstdc++-v3/include/bits/ranges_algo.h | 113 ++++-- libstdc++-v3/include/bits/stl_iterator.h | 5 +- libstdc++-v3/include/std/ranges | 302 +++++++++++++--- .../testsuite/25_algorithms/minmax/constrained.cc | 42 +++ .../25_algorithms/minmax_element/constrained.cc | 27 ++ .../testsuite/std/ranges/adaptors/100479.cc | 8 +- .../testsuite/std/ranges/adaptors/100577.cc | 34 +- libstdc++-v3/testsuite/std/ranges/adaptors/join.cc | 2 +- .../ranges/adaptors/{split.cc => lazy_split.cc} | 74 ++-- .../adaptors/{split_neg.cc => lazy_split_neg.cc} | 6 +- .../testsuite/std/ranges/adaptors/p2281.cc | 18 +- .../testsuite/std/ranges/adaptors/sizeof.cc | 2 +- .../testsuite/std/ranges/adaptors/split.cc | 98 +++-- libstdc++-v3/testsuite/std/ranges/p2259.cc | 6 +- libstdc++-v3/testsuite/std/ranges/p2325.cc | 14 + libstdc++-v3/testsuite/std/ranges/p2367.cc | 5 +- 35 files changed, 1402 insertions(+), 689 deletions(-) copy libstdc++-v3/testsuite/std/ranges/adaptors/{split.cc => lazy_split.cc} (67%) rename libstdc++-v3/testsuite/std/ranges/adaptors/{split_neg.cc => lazy_split_neg. [...]