This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 924a5ce make next_cc0_user take rtx_insn * new 67218f0 Implement C++17 node extraction and insertion (P0083R5) new 9c1ff91 * regcprop.c (copyprop_hardreg_forward_1): Remove noop moves.
The 2 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: gcc/ChangeLog | 4 + gcc/regcprop.c | 24 +- libstdc++-v3/ChangeLog | 100 +++++++ .../doc/html/manual/profile_mode_devel.html | 2 +- libstdc++-v3/doc/html/manual/status.html | 4 +- libstdc++-v3/doc/xml/manual/status_cxx2017.xml | 3 +- libstdc++-v3/include/Makefile.am | 3 +- libstdc++-v3/include/Makefile.in | 3 +- libstdc++-v3/include/bits/hashtable.h | 141 +++++++++ libstdc++-v3/include/bits/node_handle.h | 330 +++++++++++++++++++++ libstdc++-v3/include/bits/stl_map.h | 83 ++++++ libstdc++-v3/include/bits/stl_multimap.h | 82 +++++ libstdc++-v3/include/bits/stl_multiset.h | 81 +++++ libstdc++-v3/include/bits/stl_set.h | 81 +++++ libstdc++-v3/include/bits/stl_tree.h | 197 +++++++++++- libstdc++-v3/include/bits/unordered_map.h | 178 ++++++++++- libstdc++-v3/include/bits/unordered_set.h | 172 +++++++++++ libstdc++-v3/include/debug/map.h | 46 ++- libstdc++-v3/include/debug/multimap.h | 34 +++ libstdc++-v3/include/debug/multiset.h | 34 +++ libstdc++-v3/include/debug/set.h | 45 +++ libstdc++-v3/include/debug/unordered_map | 94 +++++- libstdc++-v3/include/debug/unordered_set | 93 ++++++ libstdc++-v3/python/libstdcxx/v6/printers.py | 58 +++- .../23_containers/map/modifiers/extract.cc | 147 +++++++++ .../testsuite/23_containers/map/modifiers/merge.cc | 147 +++++++++ .../23_containers/multimap/modifiers/extract.cc | 141 +++++++++ .../23_containers/multimap/modifiers/merge.cc | 119 ++++++++ .../23_containers/multiset/modifiers/extract.cc | 129 ++++++++ .../23_containers/multiset/modifiers/merge.cc | 117 ++++++++ .../23_containers/set/modifiers/extract.cc | 138 +++++++++ .../testsuite/23_containers/set/modifiers/merge.cc | 143 +++++++++ .../unordered_map/modifiers/extract.cc | 148 +++++++++ .../23_containers/unordered_map/modifiers/merge.cc | 140 +++++++++ .../unordered_multimap/modifiers/extract.cc | 138 +++++++++ .../unordered_multimap/modifiers/merge.cc | 123 ++++++++ .../unordered_multiset/modifiers/extract.cc | 128 ++++++++ .../unordered_multiset/modifiers/merge.cc | 121 ++++++++ .../unordered_set/instantiation_neg.cc | 2 +- .../unordered_set/modifiers/extract.cc | 140 +++++++++ .../23_containers/unordered_set/modifiers/merge.cc | 140 +++++++++ .../testsuite/libstdc++-prettyprinters/cxx17.cc | 16 +- 42 files changed, 4046 insertions(+), 23 deletions(-) create mode 100644 libstdc++-v3/include/bits/node_handle.h create mode 100644 libstdc++-v3/testsuite/23_containers/map/modifiers/extract.cc create mode 100644 libstdc++-v3/testsuite/23_containers/map/modifiers/merge.cc create mode 100644 libstdc++-v3/testsuite/23_containers/multimap/modifiers/extract.cc create mode 100644 libstdc++-v3/testsuite/23_containers/multimap/modifiers/merge.cc create mode 100644 libstdc++-v3/testsuite/23_containers/multiset/modifiers/extract.cc create mode 100644 libstdc++-v3/testsuite/23_containers/multiset/modifiers/merge.cc create mode 100644 libstdc++-v3/testsuite/23_containers/set/modifiers/extract.cc create mode 100644 libstdc++-v3/testsuite/23_containers/set/modifiers/merge.cc create mode 100644 libstdc++-v3/testsuite/23_containers/unordered_map/modifiers/ex [...] create mode 100644 libstdc++-v3/testsuite/23_containers/unordered_map/modifiers/merge.cc create mode 100644 libstdc++-v3/testsuite/23_containers/unordered_multimap/modifie [...] create mode 100644 libstdc++-v3/testsuite/23_containers/unordered_multimap/modifie [...] create mode 100644 libstdc++-v3/testsuite/23_containers/unordered_multiset/modifie [...] create mode 100644 libstdc++-v3/testsuite/23_containers/unordered_multiset/modifie [...] create mode 100644 libstdc++-v3/testsuite/23_containers/unordered_set/modifiers/ex [...] create mode 100644 libstdc++-v3/testsuite/23_containers/unordered_set/modifiers/merge.cc