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_profiled_lto in repository toolchain/ci/gcc.
from bbb9c03005c Daily bump. adds 75841b04987 [PATCH, rs6000] Additional cleanup of rs6000_builtin_mask adds 45e0683d99c [PATCH, rs6000] Cleanup some vstrir define_expand naming in [...] adds 605b64251c7 Extend 16/32-bit vector bit_op patterns with (m,0,i) alternative. adds 1cc0e9a46e7 Adjust testcase. adds aaf9583d4cf remove 'continue' as last statement in loop adds 3c4af0f0549 tree-optimization/106387 - properly create SSA name for rea [...] adds b2e99bb6900 tree-optimization/106397 - array prefetch and LC SSA adds d85e5aeb766 tree-optimization/106403 - fix ICE with VN of .STORE_LANES adds 03c0b06420b mklog: fill-up subject prefix only for a single PR adds 786e51648bd libsanitizer: Fix Solaris 11.3 compilation [PR105531] adds 18ef76d3a17 Allow space in git commit-mklog args adds 41da4070a2a graphds: Fix description of SCC algorithm adds cf172561052 libgo: use POSIX shell arithmetic expansion adds 64cb87b2381 xtensa: Optimize "bitwise AND NOT with imm" followed by "br [...] adds b4cc945c045 Fix handling of zero capacity regions in -Wanalyzer-allocat [...] adds 27d2c49c415 Fix CL entry adds b585af38a12 c++: correct ChangeLog PR number adds f77bbc8f869 c++: CTAD from initializer list [PR106366] adds 0fb35a45a28 analyzer: fix ICE in binding_cluster ctor [PR106401] adds 6d5194a10dc analyzer: fix state explosion on va_arg [PR106413] adds b563a8dd3fc Daily bump. adds f8e6e2c046e Adding three new function attributes for static analysis of [...] adds 0e6fa997306 Daily bump. adds 76d6224b944 PR target/106303: Fix TImode STV related failures on x86. adds e850c98f1f0 Convert some uses in ranger_cache and DOM to vrange. adds 4a36b4e1fe4 Allow registering same SSA name relations in oracle. adds 164758b02c4 Tweaks to global ranges. adds 8b8103dcd26 Minor fixes to vr_values to not die on non integral types. adds 6078e013e3d Daily bump.
No new revisions were added by this update.
Summary of changes: contrib/ChangeLog | 11 + contrib/git-commit-mklog.py | 9 +- contrib/mklog.py | 26 +- contrib/prepare-commit-msg | 2 +- gcc/ChangeLog | 149 ++++++++- gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 36 +++ gcc/analyzer/region-model.cc | 2 +- gcc/analyzer/sm-fd.cc | 338 ++++++++++++++++----- gcc/analyzer/store.cc | 1 - gcc/analyzer/varargs.cc | 26 +- gcc/c-family/ChangeLog | 6 + gcc/c-family/c-attribs.cc | 31 ++ gcc/config/i386/i386-features.cc | 116 +++---- gcc/config/i386/i386-features.h | 12 +- gcc/config/i386/mmx.md | 70 +++-- gcc/config/i386/predicates.md | 4 + gcc/config/rs6000/altivec.md | 26 +- gcc/config/rs6000/rs6000-c.cc | 21 +- gcc/config/rs6000/rs6000-protos.h | 5 +- gcc/config/rs6000/rs6000.cc | 102 +------ gcc/config/rs6000/rs6000.opt | 4 - gcc/config/xtensa/xtensa.md | 84 +++++ gcc/cp/ChangeLog | 16 +- gcc/cp/init.cc | 1 - gcc/cp/pt.cc | 31 +- gcc/doc/extend.texi | 37 +++ gcc/doc/invoke.texi | 18 +- gcc/gimple-range-cache.cc | 7 +- gcc/go/gofrontend/MERGE | 2 +- gcc/graphds.cc | 2 +- gcc/testsuite/ChangeLog | 50 +++ gcc/testsuite/c-c++-common/attr-fd.c | 18 ++ gcc/testsuite/g++.dg/cpp1z/class-deduction112.C | 14 + gcc/testsuite/gcc.dg/analyzer/fd-4.c | 8 +- gcc/testsuite/gcc.dg/analyzer/fd-5.c | 53 ++++ gcc/testsuite/gcc.dg/analyzer/memcpy-2.c | 8 + gcc/testsuite/gcc.dg/analyzer/pr106394.c | 19 ++ gcc/testsuite/gcc.dg/analyzer/torture/stdarg-4.c | 329 ++++++++++++++++++++ gcc/testsuite/gcc.dg/pr106397.c | 17 ++ gcc/testsuite/gcc.dg/pr23911.c | 3 +- gcc/testsuite/gcc.target/i386/pr106038-1.c | 27 ++ gcc/testsuite/gcc.target/i386/pr106303.c | 25 ++ gcc/testsuite/gcc.target/i386/pr106347.c | 24 ++ gcc/tree-ssa-dom.cc | 18 +- gcc/tree-ssa-loop-prefetch.cc | 27 +- gcc/tree-ssa-sccvn.cc | 11 +- gcc/tree-ssanames.cc | 3 +- gcc/tree-vect-stmts.cc | 5 +- gcc/value-query.cc | 10 +- gcc/value-relation.cc | 7 +- gcc/vr-values.cc | 15 +- libgo/match.sh | 2 +- libgo/testsuite/gotest | 2 +- libiberty/ChangeLog | 6 + libiberty/_doprnt.c | 1 - libsanitizer/ChangeLog | 7 + .../sanitizer_common/sanitizer_linux_libcdep.cpp | 44 ++- libsanitizer/sanitizer_common/sanitizer_solaris.h | 56 ++++ 59 files changed, 1614 insertions(+), 392 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/attr-fd.c create mode 100644 gcc/testsuite/g++.dg/cpp1z/class-deduction112.C create mode 100644 gcc/testsuite/gcc.dg/analyzer/fd-5.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/memcpy-2.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr106394.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/torture/stdarg-4.c create mode 100644 gcc/testsuite/gcc.dg/pr106397.c create mode 100644 gcc/testsuite/gcc.target/i386/pr106038-1.c create mode 100644 gcc/testsuite/gcc.target/i386/pr106303.c create mode 100644 gcc/testsuite/gcc.target/i386/pr106347.c create mode 100644 libsanitizer/sanitizer_common/sanitizer_solaris.h