This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gcc-6-branch in repository gcc.
from 4055ab9 PR target/79495 * config/i386/i386.md (*movxf_internal): Ad [...] new 47b76a3 PR78273 fix count to work with partitioning function new 8820935 PR78134 fix return types of heterogeneous lookup functions new 1180e42 PR78702 fix accessibility of locale::facet::__shim new ede2bd7 PR79114 use decayed type in std::throw_with_nested assertion new ab951a0 PR69301 don't assume atomic<T> can default construct T new 13c0c72 PR69321 fix any_cast<T>(any*) for non-copyable T new 86619a1 PR72792 PR72793 relax requirements on rebind members
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/ChangeLog | 102 +++++++++++++++++++++ libstdc++-v3/include/bits/alloc_traits.h | 72 +++++++++------ libstdc++-v3/include/bits/locale_classes.h | 5 +- libstdc++-v3/include/bits/ptr_traits.h | 15 +-- libstdc++-v3/include/bits/stl_map.h | 30 +++--- libstdc++-v3/include/bits/stl_multimap.h | 28 +++--- libstdc++-v3/include/bits/stl_multiset.h | 24 ++--- libstdc++-v3/include/bits/stl_set.h | 26 +++--- libstdc++-v3/include/experimental/any | 5 +- libstdc++-v3/include/experimental/memory | 4 +- libstdc++-v3/include/ext/pointer.h | 8 +- libstdc++-v3/include/std/atomic | 36 ++++---- libstdc++-v3/include/std/type_traits | 6 -- libstdc++-v3/libsupc++/nested_exception.h | 2 +- libstdc++-v3/src/c++11/cxx11-shim_facets.cc | 20 ++-- .../types_std.cc => nested_exception/79114.cc} | 13 +-- .../20_util/allocator_traits/members/pointers.cc | 52 +++++++++++ .../allocator_traits/members/rebind_alloc.cc | 81 ++++++++++++++++ .../testsuite/20_util/pointer_traits/rebind.cc | 68 ++++++++++++++ .../testsuite/23_containers/map/operations/2.cc | 49 +++++++++- .../23_containers/multimap/operations/2.cc | 27 +++++- .../23_containers/multiset/operations/2.cc | 27 +++++- .../testsuite/23_containers/set/operations/2.cc | 50 +++++++++- .../62154.cc => 29_atomics/atomic/69301.cc} | 48 +++++----- .../testsuite/experimental/any/misc/any_cast.cc | 13 +++ 25 files changed, 637 insertions(+), 174 deletions(-) copy libstdc++-v3/testsuite/18_support/{headers/exception/types_std.cc => nested_e [...] create mode 100644 libstdc++-v3/testsuite/20_util/allocator_traits/members/pointers.cc create mode 100644 libstdc++-v3/testsuite/20_util/allocator_traits/members/rebind_ [...] create mode 100644 libstdc++-v3/testsuite/20_util/pointer_traits/rebind.cc copy libstdc++-v3/testsuite/{18_support/nested_exception/62154.cc => 29_atomics/at [...]