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-arm-mainline-allnoconfig in repository toolchain/ci/gcc.
from 814299a9d49 c++: -Wmissing-field-initializers in unevaluated ctx [PR98620] adds ab96073df00 MAINTAINERS: Add myself for write after approval adds ff99d05f40f configure, make: Fix up --enable-link-serialization adds 13d47c37a2c reassoc: Optimize in reassoc x < 0 && y < 0 to (x | y) < 0 [...] adds 24ea113f75c widening_mul: Fix up ICE caused by my signed multiplication [...] adds b2230210f17 gcov: add more debugging facility adds e91910d3576 options: properly compare string arguments adds 52a170b1a18 tree-optimization/98550 - fix BB vect unrolling check adds e0bec6ceac4 c++: Fix ICE with CTAD in concept [PR98611] adds cf2ac1c30af [PR97969] LRA: Transform pattern `plus (plus (hard reg, con [...] adds 25bef68902f arm: Add movmisalign patterns for MVE (PR target/97875) adds 1aff68d54c3 Fix typo in function-abi.h adds 248feb2fa2c gcov: fix printf format for 32-bit hosts adds e2aa8a5f982 libcody: Simplify configure [PR 98414, 98509] adds 728fee7a798 MAINTAINERS: Fix spacing adds 5a9cfad2de9 Avoid a couple more ICEs in print_mem_ref (PR c/98597). adds cfaaa6a1ca7 syscall: ensure openat uses variadic libc wrapper adds 6851dda2e79 Daily bump. adds abb3993e49c amdgcn: Fix subdf3 pattern adds c8812bac8ee amdgcn: Improve FP division accuracy adds 3df6fac0080 amdgcn: Fix exec register live-on-entry to BB in md-reorg adds 7993fe1877a amdgcn: Remove dead code for fixed v0 register
No new revisions were added by this update.
Summary of changes: ChangeLog | 8 + MAINTAINERS | 7 +- gcc/ChangeLog | 108 ++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 6 + gcc/c-family/ChangeLog | 8 + gcc/c-family/c-pretty-print.c | 10 +- gcc/config/arm/arm.h | 40 + gcc/config/arm/mve.md | 23 + gcc/config/arm/neon.md | 25 - gcc/config/arm/vec-common.md | 23 + gcc/config/gcn/gcn-valu.md | 62 +- gcc/config/gcn/gcn.c | 21 +- gcc/config/gcn/gcn.md | 3 +- gcc/configure | 7 +- gcc/configure.ac | 7 +- gcc/cp/ChangeLog | 12 + gcc/cp/tree.c | 5 +- gcc/function-abi.h | 2 +- gcc/gcov.c | 43 +- gcc/go/gofrontend/MERGE | 2 +- gcc/lra-eliminations.c | 28 +- gcc/optc-save-gen.awk | 6 +- gcc/profile.c | 5 + gcc/testsuite/ChangeLog | 51 + gcc/testsuite/g++.dg/cpp2a/concepts-ctad1.C | 16 + gcc/testsuite/g++.dg/cpp2a/concepts-ctad2.C | 13 + gcc/testsuite/g++.dg/opt/pr98550.C | 96 + gcc/testsuite/g++.dg/warn/Wuninitialized-13.C | 28 + gcc/testsuite/gcc.c-torture/compile/pr98629.c | 11 + gcc/testsuite/gcc.c-torture/execute/pr95731.c | 40 + gcc/testsuite/gcc.dg/tree-ssa/pr95731.c | 22 + gcc/testsuite/gcc.dg/uninit-39.c | 47 + gcc/testsuite/gcc.target/arm/pr97969.c | 54 + gcc/testsuite/gcc.target/arm/simd/mve-vneg.c | 3 + gcc/testsuite/gcc.target/gcn/fpdiv.c | 38 + gcc/tree-ssa-math-opts.c | 35 +- gcc/tree-ssa-reassoc.c | 62 +- gcc/tree-vect-slp.c | 40 +- libcody/ChangeLog | 17 + libcody/Makefile.in | 121 +- libcody/Makesub.in | 49 - libcody/build-aux/config.guess | 1476 --------------- libcody/build-aux/config.sub | 1833 ------------------ libcody/build-aux/install-sh | 518 ------ libcody/config.h.in | 5 +- libcody/config.m4 | 182 -- libcody/configure | 209 +-- libcody/configure.ac | 15 +- libcody/dox.cfg.in | 2478 ------------------------- libcody/fatal.cc | 22 - libcody/gdbinit.in | 11 - libcody/internal.hh | 3 - libgo/go/syscall/exec_linux.go | 2 +- 54 files changed, 981 insertions(+), 6979 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-ctad1.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-ctad2.C create mode 100644 gcc/testsuite/g++.dg/opt/pr98550.C create mode 100644 gcc/testsuite/g++.dg/warn/Wuninitialized-13.C create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr98629.c create mode 100644 gcc/testsuite/gcc.c-torture/execute/pr95731.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr95731.c create mode 100644 gcc/testsuite/gcc.dg/uninit-39.c create mode 100644 gcc/testsuite/gcc.target/arm/pr97969.c create mode 100644 gcc/testsuite/gcc.target/gcn/fpdiv.c delete mode 100644 libcody/Makesub.in delete mode 100755 libcody/build-aux/config.guess delete mode 100755 libcody/build-aux/config.sub delete mode 100755 libcody/build-aux/install-sh delete mode 100644 libcody/dox.cfg.in delete mode 100644 libcody/gdbinit.in