This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from e69c2e21201 SVE intrinsics: Add fold_active_lanes_to method to refactor [...] new 2608fcfe5fc libstdc++: Move std::__niter_base and std::__niter_wrap to [...] new 3abe751ea86 libstdc++: Refactor std::uninitialized_{copy,fill,fill_n} a [...] new 4020ee77186 libstdc++: Make __normal_iterator constexpr, always_inline, [...] new 7ed561f63e7 libstdc++: Inline memmove optimizations for std::copy etc. [...] new 5546be4c24c libstdc++: Add nodiscard to std::find new 6ecf2b380da libstdc++: Add always_inline to some one-liners in <bits/st [...] new d0a9ae1321f libstdc++: Reuse std::__assign_one in <bits/ranges_algobase.h>
The 7 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: libstdc++-v3/include/bits/ranges_algobase.h | 22 +- libstdc++-v3/include/bits/stl_algo.h | 26 +- libstdc++-v3/include/bits/stl_algobase.h | 471 ++++++++++----------- libstdc++-v3/include/bits/stl_iterator.h | 244 +++++++---- libstdc++-v3/include/bits/stl_uninitialized.h | 379 +++++++++++++---- .../specialized_algorithms/uninitialized_copy/1.cc | 3 +- .../uninitialized_copy/114817.cc | 39 ++ .../uninitialized_copy/64476.cc | 6 +- .../uninitialized_copy/89164.cc | 3 +- .../uninitialized_copy_n/114817.cc | 39 ++ .../uninitialized_copy_n/89164.cc | 3 +- .../uninitialized_fill/89164.cc | 3 +- .../uninitialized_fill_n/89164.cc | 3 +- .../uninitialized_fill_n/sizes.cc | 22 +- .../testsuite/23_containers/vector/cons/89164.cc | 5 +- .../23_containers/vector/cons/89164_c++17.cc | 3 +- .../24_iterators/normal_iterator/wrapping.cc | 29 ++ .../testsuite/25_algorithms/copy/114817.cc | 38 ++ .../testsuite/25_algorithms/copy/115444.cc | 93 ++++ .../testsuite/25_algorithms/copy_n/114817.cc | 38 ++ 20 files changed, 1004 insertions(+), 465 deletions(-) create mode 100644 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitial [...] create mode 100644 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitial [...] create mode 100644 libstdc++-v3/testsuite/24_iterators/normal_iterator/wrapping.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/copy/114817.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/copy/115444.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/copy_n/114817.cc