This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-aarch64-next-defconfig in repository toolchain/ci/gcc.
from a9f76d03bbc internal/cpu: more build fixes for Go1.16beta1 release adds f47c00cf95d syscall: don't define sys_SETREUID and friends adds e591f18ff87 xfail test that will never pass on i?86 FreeBSD adds c21f47f4019 IBM Z: Fix check_effective_target_s390_z14_hw adds f56de3557fa Update GNU/Hurd configure support adds ad92bf4b165 doc: Re-add HSAIL to Language Standards adds 651b8a50a6d Daily bump. adds df1eba3cead analyzer: remove xfail [PR98223] adds 23fc2be633c analyzer: add regression test for PR 98073 adds ac3966e315a analyzer: fix false leaks when writing through unknown ptrs [...] adds 57706dd7e00 gcc-changelog: workaround for utf8 filenames adds a05cc70a6c1 tree-optimization/98513 - fix bug in range intersection code adds c9ee9c1e355 add signed_bool_precision attribute for GIMPLE FE use adds cecf8c662de robustify vxworks glimits.h overriding adds 758abf1ae31 add alignment to enable store merging in strict-alignment targets adds 6d0b075d662 Fix libcody build on hppa*-*-hpux11.11. adds e6a5daae7ec c++: Fix g++.dg/warn/Wmismatched-dealloc.C for C++11 [PR98566] adds 8b6f1e8f97f PR fortran/78746 - invalid access after error recovery adds 334a295fafd testsuite, coroutines : Fix a bad testcase [PR96504]. adds fd64f348a6b PR c++/98305 spurious -Wmismatched-new-delete on template instance adds abb1b6058c0 PR c++/95768 - pretty-printer ICE on -Wuninitialized with a [...]
No new revisions were added by this update.
Summary of changes: ChangeLog | 6 + c++tools/ChangeLog | 9 + config/ChangeLog | 5 + contrib/gcc-changelog/git_commit.py | 26 ++- contrib/gcc-changelog/git_email.py | 6 +- contrib/gcc-changelog/git_repository.py | 6 +- contrib/gcc-changelog/test_email.py | 3 +- gcc/ChangeLog | 184 ++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/Makefile.in | 9 +- gcc/analyzer/ChangeLog | 7 + gcc/analyzer/region-model-reachability.cc | 36 +++- gcc/builtins.c | 210 ++++++++++++--------- gcc/c-family/c-attribs.c | 41 ++++ gcc/c-family/c-pretty-print.c | 187 +++++++++++++++--- gcc/config/t-vxworks | 33 +--- gcc/configure | 12 +- gcc/cp/ChangeLog | 36 ++++ gcc/cp/error.c | 28 +-- gcc/d/ChangeLog | 17 ++ gcc/doc/standards.texi | 8 + gcc/fortran/resolve.c | 2 +- gcc/go/ChangeLog | 13 ++ gcc/go/gofrontend/MERGE | 2 +- gcc/objcp/ChangeLog | 10 + gcc/testsuite/ChangeLog | 113 +++++++++++ .../g++.dg/coroutines/torture/pr95519-05-gro.C | 2 +- gcc/testsuite/g++.dg/opt/store-merging-2.C | 4 +- gcc/testsuite/g++.dg/pr95768.C | 32 ++++ gcc/testsuite/g++.dg/warn/Wmismatched-dealloc.C | 4 +- .../g++.dg/warn/Wmismatched-new-delete-3.C | 159 ++++++++++++++++ gcc/testsuite/g++.dg/warn/Wuninitialized-12.C | 40 ++++ gcc/testsuite/gcc.dg/analyzer/pr94851-1.c | 3 +- gcc/testsuite/gcc.dg/analyzer/pr97072.c | 9 + gcc/testsuite/gcc.dg/analyzer/pr98073.c | 13 ++ gcc/testsuite/gcc.dg/pr95582.c | 19 ++ gcc/testsuite/gcc.dg/tree-ssa/pr98513.c | 47 +++++ gcc/testsuite/gcc.dg/uninit-38.c | 87 +++++++++ gcc/testsuite/gcc.target/s390/s390.exp | 2 +- gcc/testsuite/gfortran.dg/dec_math.f90 | 2 +- gcc/value-range.cc | 6 +- libatomic/ChangeLog | 4 + libatomic/configure | 12 +- libbacktrace/ChangeLog | 4 + libbacktrace/configure | 12 +- libcc1/ChangeLog | 4 + libcc1/configure | 12 +- libcody/resolver.cc | 4 +- libffi/ChangeLog | 4 + libffi/configure | 12 +- libgfortran/ChangeLog | 4 + libgfortran/configure | 12 +- libgo/config/libtool.m4 | 12 +- libgo/configure | 12 +- libgo/go/syscall/setuidgid_32_linux.go | 6 - libgo/go/syscall/setuidgid_linux.go | 6 - libgomp/ChangeLog | 24 +++ libgomp/configure | 12 +- libhsail-rt/ChangeLog | 4 + libhsail-rt/configure | 12 +- libitm/ChangeLog | 4 + libitm/configure | 12 +- libobjc/ChangeLog | 4 + libobjc/configure | 12 +- liboffloadmic/ChangeLog | 5 + liboffloadmic/configure | 12 +- liboffloadmic/plugin/configure | 12 +- libphobos/ChangeLog | 4 + libphobos/configure | 12 +- libquadmath/ChangeLog | 4 + libquadmath/configure | 12 +- libsanitizer/ChangeLog | 4 + libsanitizer/configure | 12 +- libssp/ChangeLog | 4 + libssp/configure | 12 +- libstdc++-v3/ChangeLog | 8 + libstdc++-v3/configure | 12 +- libtool.m4 | 12 +- libvtv/ChangeLog | 4 + libvtv/configure | 12 +- lto-plugin/ChangeLog | 4 + lto-plugin/configure | 12 +- zlib/ChangeLog | 4 + zlib/configure | 12 +- 84 files changed, 1349 insertions(+), 468 deletions(-) create mode 100644 gcc/testsuite/g++.dg/pr95768.C create mode 100644 gcc/testsuite/g++.dg/warn/Wmismatched-new-delete-3.C create mode 100644 gcc/testsuite/g++.dg/warn/Wuninitialized-12.C create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr97072.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr98073.c create mode 100644 gcc/testsuite/gcc.dg/pr95582.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr98513.c create mode 100644 gcc/testsuite/gcc.dg/uninit-38.c