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-arm-bootstrap in repository toolchain/ci/gcc.
from 4cf3c339815 libstdc++: Fix deadlock in atomic wait [PR104442] adds f6ff6738fa2 gccgo: link static libgo against -lrt on GNU/Linux adds f3ffea93ef3 Fortran: try simplifications during reductions of array con [...] adds 70feb6839fe compiler: treat notinheap types as not being pointers adds 2e2b861e894 compiler: use nil pointer for zero length string constant adds e50a79552d5 compiler: don't warn for print() adds 91b27d984ce analyzer: more uninit test coverage adds 3adf509fe6f Daily bump. adds 41582f88ec0 [COMMITTED] Fix PR aarch64/104474: ICE with vector float in [...]
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 235 +++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 8 + gcc/c-family/ChangeLog | 5 + gcc/c/ChangeLog | 9 + gcc/config/aarch64/aarch64.cc | 2 +- gcc/cp/ChangeLog | 29 +++ gcc/fortran/ChangeLog | 7 + gcc/fortran/arith.cc | 36 +++- gcc/go/ChangeLog | 11 + gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/expressions.cc | 23 +- gcc/go/gofrontend/gogo.cc | 7 +- gcc/go/gofrontend/types.cc | 25 ++- gcc/go/gofrontend/types.h | 5 +- gcc/go/gospec.cc | 42 +++- gcc/testsuite/ChangeLog | 197 +++++++++++++++++ gcc/testsuite/gcc.dg/analyzer/uninit-1.c | 85 ++++++++ .../gcc.dg/analyzer/uninit-CWE-457-examples.c | 119 +++++++++++ gcc/testsuite/gcc.target/aarch64/sve/pr104474-1.c | 9 + gcc/testsuite/gcc.target/aarch64/sve/pr104474-2.c | 9 + gcc/testsuite/gcc.target/aarch64/sve/pr104474-3.c | 9 + gcc/testsuite/gfortran.dg/array_constructor_55.f90 | 55 +++++ gotools/ChangeLog | 6 + gotools/Makefile.am | 4 +- gotools/Makefile.in | 5 +- gotools/configure | 7 + gotools/configure.ac | 9 + libstdc++-v3/ChangeLog | 7 + 29 files changed, 933 insertions(+), 36 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/analyzer/uninit-CWE-457-examples.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/pr104474-1.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/pr104474-2.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/pr104474-3.c create mode 100644 gcc/testsuite/gfortran.dg/array_constructor_55.f90