This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 9f2c0e68ce0 Make more use of df_read_modify_subreg_p new d8db98b29ca Improve addressing of TI/TFmode new 1848e944f78 Simplify frame layout for stack probing new aa9edc021f4 Deduction guides for associative containers, debug mode ded [...]
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: gcc/ChangeLog | 12 ++ gcc/config/aarch64/aarch64.c | 38 +++--- gcc/testsuite/ChangeLog | 4 + .../gcc.target/aarch64/ldp_stp_unaligned_2.c | 18 +++ libstdc++-v3/ChangeLog | 33 +++++ libstdc++-v3/include/bits/stl_iterator.h | 21 +++ libstdc++-v3/include/bits/stl_map.h | 34 +++++ libstdc++-v3/include/bits/stl_multimap.h | 33 +++++ libstdc++-v3/include/bits/stl_multiset.h | 38 ++++++ libstdc++-v3/include/bits/stl_set.h | 35 +++++ libstdc++-v3/include/bits/unordered_map.h | 152 +++++++++++++++++++++ libstdc++-v3/include/bits/unordered_set.h | 133 ++++++++++++++++++ libstdc++-v3/include/debug/deque | 10 ++ libstdc++-v3/include/debug/forward_list | 10 ++ libstdc++-v3/include/debug/list | 10 ++ libstdc++-v3/include/debug/map.h | 33 +++++ libstdc++-v3/include/debug/multimap.h | 33 +++++ libstdc++-v3/include/debug/multiset.h | 37 +++++ libstdc++-v3/include/debug/set.h | 36 +++++ libstdc++-v3/include/debug/unordered_map | 152 +++++++++++++++++++++ libstdc++-v3/include/debug/unordered_set | 132 ++++++++++++++++++ libstdc++-v3/include/debug/vector | 10 ++ .../testsuite/23_containers/map/cons/deduction.cc | 68 +++++++++ .../23_containers/multimap/cons/deduction.cc | 68 +++++++++ .../23_containers/multiset/cons/deduction.cc | 68 +++++++++ .../testsuite/23_containers/set/cons/deduction.cc | 68 +++++++++ .../23_containers/unordered_map/cons/deduction.cc | 77 +++++++++++ .../unordered_multimap/cons/deduction.cc | 77 +++++++++++ .../unordered_multiset/cons/deduction.cc | 78 +++++++++++ .../23_containers/unordered_set/cons/deduction.cc | 78 +++++++++++ 30 files changed, 1576 insertions(+), 20 deletions(-) create mode 100644 gcc/testsuite/gcc.target/aarch64/ldp_stp_unaligned_2.c create mode 100644 libstdc++-v3/testsuite/23_containers/map/cons/deduction.cc create mode 100644 libstdc++-v3/testsuite/23_containers/multimap/cons/deduction.cc create mode 100644 libstdc++-v3/testsuite/23_containers/multiset/cons/deduction.cc create mode 100644 libstdc++-v3/testsuite/23_containers/set/cons/deduction.cc create mode 100644 libstdc++-v3/testsuite/23_containers/unordered_map/cons/deduction.cc create mode 100644 libstdc++-v3/testsuite/23_containers/unordered_multimap/cons/de [...] create mode 100644 libstdc++-v3/testsuite/23_containers/unordered_multiset/cons/de [...] create mode 100644 libstdc++-v3/testsuite/23_containers/unordered_set/cons/deduction.cc