This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from c1375d975d9 Fortran: Eliminate nuisance warnings by initializing. new a41a56dee5c libstdc++: Add likely/unlikely attributes to <codecvt> impl [...] new 822a11a1e64 libstdc++: Do not use memmove for 1-element ranges [PR108846] new 8e342c04550 libstdc++: Fix uses_allocator_construction_args for pair<T& [...]
The 3 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/stl_algobase.h | 46 +++++------ libstdc++-v3/include/bits/uses_allocator_args.h | 11 ++- libstdc++-v3/src/c++11/codecvt.cc | 92 +++++++++++----------- .../testsuite/20_util/pair/astuple/get-2.cc | 68 ++++++++++++++++ .../testsuite/20_util/scoped_allocator/108952.cc | 23 ++++++ .../testsuite/20_util/uses_allocator/lwg3527.cc | 22 ++++++ .../testsuite/25_algorithms/copy/108846.cc | 58 ++++++++++++++ .../25_algorithms/copy_backward/108846.cc | 58 ++++++++++++++ .../testsuite/25_algorithms/copy_n/108846.cc | 58 ++++++++++++++ .../testsuite/25_algorithms/move/108846.cc | 58 ++++++++++++++ .../25_algorithms/move_backward/108846.cc | 58 ++++++++++++++ 11 files changed, 480 insertions(+), 72 deletions(-) create mode 100644 libstdc++-v3/testsuite/20_util/pair/astuple/get-2.cc create mode 100644 libstdc++-v3/testsuite/20_util/scoped_allocator/108952.cc create mode 100644 libstdc++-v3/testsuite/20_util/uses_allocator/lwg3527.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/copy/108846.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/copy_backward/108846.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/copy_n/108846.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/move/108846.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/move_backward/108846.cc