This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-aarch64-bootstrap_lto in repository toolchain/ci/gcc.
from af47f22fd57 Fix checking disabled build. adds 5aa91072e24 Implement DSE of dead functions calls storing memory. adds e30bf330443 More ipa-modref-tree.h cleanups adds 6471396dec0 Fix bug in ipa-pure-const and add debug counters adds a8029add306 Daily bump. adds a29174904bb Cleanup tree-ssa-alias and tree-ssa-dse use of modref summary adds 5a6100a2553 tsan: remove not needed -ldl in options adds a7ef5da3a9c Do not pass NULL to memset in ssa_global_cache. adds 8a601f9bc45 Remove gcc.dg/pr103229.c adds 64f3e71c302 Extend modref to track kills new e9a53a4f764 libstdc++: [_GLIBCXX_DEBUG] Remove _Safe_container<>::_M_safe()
The 1 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: fixincludes/ChangeLog | 8 + gcc/ChangeLog | 145 +++++++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 73 +++++++ gcc/dbgcnt.def | 1 + gcc/gimple-range-cache.cc | 3 +- gcc/ipa-modref-tree.c | 256 +++++++++++++++++++++++ gcc/ipa-modref-tree.h | 42 ++-- gcc/ipa-modref.c | 234 +++++++++++++++------ gcc/ipa-modref.h | 4 +- gcc/ipa-pure-const.c | 13 +- gcc/testsuite/ChangeLog | 25 +++ gcc/testsuite/c-c++-common/asan/null-deref-1.c | 2 +- gcc/testsuite/c-c++-common/tsan/free_race.c | 1 + gcc/testsuite/c-c++-common/tsan/free_race2.c | 1 + gcc/testsuite/g++.dg/cpp1z/inh-ctor23.C | 2 +- gcc/testsuite/g++.dg/ipa/ipa-icf-4.C | 2 +- gcc/testsuite/gcc.dg/ipa/ipa-sra-4.c | 2 +- gcc/testsuite/gcc.dg/tree-ssa/modref-dse-1.c | 28 +++ gcc/testsuite/gcc.dg/tree-ssa/modref-dse-2.c | 31 +++ gcc/testsuite/gcc.dg/tree-ssa/modref-dse-3.c | 22 ++ gcc/tree-ssa-alias.c | 277 +++++++++++++++---------- gcc/tree-ssa-alias.h | 3 + gcc/tree-ssa-dse.c | 98 ++++++++- libsanitizer/ChangeLog | 4 + libstdc++-v3/ChangeLog | 17 ++ libstdc++-v3/include/debug/deque | 6 +- libstdc++-v3/include/debug/forward_list | 23 +- libstdc++-v3/include/debug/list | 24 +-- libstdc++-v3/include/debug/map.h | 8 +- libstdc++-v3/include/debug/multimap.h | 8 +- libstdc++-v3/include/debug/multiset.h | 8 +- libstdc++-v3/include/debug/safe_container.h | 4 - libstdc++-v3/include/debug/set.h | 8 +- libstdc++-v3/include/debug/string | 22 +- libstdc++-v3/include/debug/unordered_map | 24 +-- libstdc++-v3/include/debug/unordered_set | 24 +-- libstdc++-v3/include/debug/vector | 10 +- 38 files changed, 1182 insertions(+), 283 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/modref-dse-1.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/modref-dse-2.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/modref-dse-3.c