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 49d508065bd jit: avoid calloc() poisoning on musl [PR106102] adds 329bef49da3 d: Fix error: aggregate value used where floating point was [...] adds 3183acc8e04 compiler: check repeated const expressions in new scope adds e3a5c77388a libgccjit: Fix bug where unary_op will return an integer ty [...] adds ce600bc4643 Daily bump. adds e484755aecd target: Fix asm generation for AVX builtins when using -mas [...] adds 918ccccbb0e Don't use gori dependencies to optimize. new 0f6eef39804 testsuite/102690: Only check warning for lp64 in Warray-bou [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/ChangeLog | 32 ++++++ gcc/DATESTAMP | 2 +- gcc/config/i386/sse.md | 10 +- gcc/cp/ChangeLog | 9 ++ gcc/d/ChangeLog | 47 +++++++++ gcc/d/d-convert.cc | 44 ++++++++- gcc/d/expr.cc | 10 +- gcc/d/toir.cc | 1 + gcc/fortran/ChangeLog | 8 ++ gcc/gimple-range-fold.cc | 30 +++--- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/expressions.cc | 110 ++++----------------- gcc/go/gofrontend/expressions.h | 105 ++++++++++++++++++++ gcc/go/gofrontend/parse.cc | 89 +++++++++++++++++ gcc/go/gofrontend/parse.h | 1 + gcc/jit/ChangeLog | 14 +++ gcc/jit/jit-playback.cc | 3 +- gcc/testsuite/ChangeLog | 49 +++++++++ gcc/testsuite/g++.dg/warn/Warray-bounds-16.C | 2 +- gcc/testsuite/gcc.dg/pr106114.c | 14 +++ gcc/testsuite/gcc.target/i386/pr106095.c | 47 +++++++++ gcc/testsuite/gdc.dg/pr106139a.d | 36 +++++++ gcc/testsuite/gdc.dg/pr106139b.d | 36 +++++++ gcc/testsuite/gdc.dg/pr106139c.d | 27 +++++ gcc/testsuite/gdc.dg/pr106139d.d | 27 +++++ gcc/testsuite/jit.dg/test-asm.cc | 1 + .../jit.dg/test-pr105812-bool-operations.c | 89 +++++++++++++++++ libgfortran/ChangeLog | 24 +++++ libphobos/ChangeLog | 6 ++ 29 files changed, 759 insertions(+), 116 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/pr106114.c create mode 100644 gcc/testsuite/gcc.target/i386/pr106095.c create mode 100644 gcc/testsuite/gdc.dg/pr106139a.d create mode 100644 gcc/testsuite/gdc.dg/pr106139b.d create mode 100644 gcc/testsuite/gdc.dg/pr106139c.d create mode 100644 gcc/testsuite/gdc.dg/pr106139d.d create mode 100644 gcc/testsuite/jit.dg/test-pr105812-bool-operations.c