This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 20f28986a8d Fix miscompilation of Python on HP-PA/Linux new 1d9f3b7ad4f analyzer: treat pointers written to *UNKNOWN as escaping [PR98575] new 790a8e8942b analyzer: support "_IO_"-prefixed variants of FILE * fns [PR98575] new f6be5d6ee31 libstdc++: Remove execution branch in deque iterator operator- new d2b1a6842c3 libstdc++: Add unordered containers heterogeneous lookup
The 4 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/analyzer/sm-file.cc | 11 +- gcc/analyzer/store.cc | 17 +- gcc/testsuite/gcc.dg/analyzer/explode-1.c | 2 +- gcc/testsuite/gcc.dg/analyzer/file-1.c | 7 + gcc/testsuite/gcc.dg/analyzer/file-3.c | 18 ++ .../gcc.dg/analyzer/{pr94851-1.c => pr94851-2.c} | 10 +- gcc/testsuite/gcc.dg/analyzer/pr98575-1.c | 46 +++++ libstdc++-v3/include/bits/hashtable.h | 201 +++++++++++++++++++++ libstdc++-v3/include/bits/hashtable_policy.h | 22 +++ libstdc++-v3/include/bits/stl_deque.h | 20 +- libstdc++-v3/include/bits/stl_function.h | 15 ++ libstdc++-v3/include/bits/stl_tree.h | 15 -- libstdc++-v3/include/bits/unordered_map.h | 94 ++++++++++ libstdc++-v3/include/bits/unordered_set.h | 99 ++++++++++ libstdc++-v3/include/debug/unordered_map | 84 +++++++++ libstdc++-v3/include/debug/unordered_set | 84 +++++++++ .../2.cc => unordered_map/operations/1.cc} | 134 ++++++-------- .../2.cc => unordered_multimap/operations/1.cc} | 106 ++++------- .../2.cc => unordered_multiset/operations/1.cc} | 102 ++++------- .../2.cc => unordered_set/operations/1.cc} | 138 +++++++------- 20 files changed, 908 insertions(+), 317 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/analyzer/file-3.c copy gcc/testsuite/gcc.dg/analyzer/{pr94851-1.c => pr94851-2.c} (80%) create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr98575-1.c copy libstdc++-v3/testsuite/23_containers/{map/operations/2.cc => unordered_map/op [...] copy libstdc++-v3/testsuite/23_containers/{multimap/operations/2.cc => unordered_m [...] copy libstdc++-v3/testsuite/23_containers/{multiset/operations/2.cc => unordered_m [...] copy libstdc++-v3/testsuite/23_containers/{set/operations/2.cc => unordered_set/op [...]