This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check_bootstrap/master-arm-check_bootstrap_lto in repository toolchain/ci/gcc.
from 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 adds e9a53a4f764 libstdc++: [_GLIBCXX_DEBUG] Remove _Safe_container<>::_M_safe() adds 3057f1ab737 VAX: Add the `setmemhi' instruction adds a34edf9a3e9 Track nondeterminism and interposable calls in ipa-modref adds 09f33d12b54 [Commmitted] Move some testcases to torture from tree-ssa adds b85a03ae11b Daily bump.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 84 ++++++ gcc/DATESTAMP | 2 +- gcc/config/vax/vax.h | 1 + gcc/config/vax/vax.md | 64 ++++ gcc/gimple-range-cache.cc | 3 +- gcc/ipa-modref-tree.c | 214 ++++++++++++++ gcc/ipa-modref-tree.h | 24 +- gcc/ipa-modref.c | 322 +++++++++++++++++---- gcc/ipa-modref.h | 21 ++ gcc/testsuite/ChangeLog | 43 +++ 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 + .../tree-ssa => gcc.c-torture/compile}/pr100278.c | 2 - .../tree-ssa => gcc.c-torture/compile}/pr101189.c | 2 - .../tree-ssa => gcc.c-torture/execute}/pr100453.c | 2 - .../tree-ssa => gcc.c-torture/execute}/pr101335.c | 2 - gcc/testsuite/gcc.dg/ipa/ipa-sra-4.c | 2 +- gcc/testsuite/gcc.dg/tree-ssa/modref-dse-3.c | 22 ++ gcc/testsuite/gcc.target/vax/setmem.c | 22 ++ gcc/tree-ssa-alias.c | 277 +++++++++++------- gcc/tree-ssa-dse.c | 32 +- gcc/tree-ssa-structalias.c | 1 + libstdc++-v3/ChangeLog | 54 ++++ 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 +- 36 files changed, 1087 insertions(+), 282 deletions(-) rename gcc/testsuite/{gcc.dg/tree-ssa => gcc.c-torture/compile}/pr100278.c (78%) rename gcc/testsuite/{gcc.dg/tree-ssa => gcc.c-torture/compile}/pr101189.c (79%) rename gcc/testsuite/{gcc.dg/tree-ssa => gcc.c-torture/execute}/pr100453.c (80%) rename gcc/testsuite/{gcc.dg/tree-ssa => gcc.c-torture/execute}/pr101335.c (79%) create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/modref-dse-3.c create mode 100644 gcc/testsuite/gcc.target/vax/setmem.c