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_O1 in repository toolchain/ci/gcc.
from 813ccbe9d27 Support cond_ashr/lshr/ashl for vector integer modes under AVX512. adds 3d7ccbc1efb x86: Optimize load of const FP all bits set vectors adds 0631faf87a1 Evaluate arguments of sizeof that are structs of variable size. adds bb169406cdc middle-end/101824 - properly handle volatiles in nested fn [...] adds 19d1a529fa9 tree-optimization/101801 - rework generic vector vectorizat [...] adds c318f8e42b3 i386: Fix typos in amxbf16 runtime test. adds c40c6a50fd4 openmp: Add support for declare simd and declare variant in [...] adds 7665af0b1a9 i386: Improve single operand AVX512F permutations [PR80355] adds 08aa0e3d4f7 tree-optimization/101809 - support emulated gather for double[int] adds 50b5877925e i386: Allow some V32HImode and V64QImode permutations even [...] adds 557d06f8b3d Enable gcc.target/i386/pr88531-1a.c for all targets adds 2ba0376ac40 gfortran: Fix in-build-tree testing [PR101305, PR101660] adds 84f906df4f0 mklog: support '-b c/101343' format. adds d796cc7a3e7 openmp: Fix up cp/parser.c build with GCC 4.8 to 6 adds 3ae564ea741 Daily bump. adds 92f7016940e gcc.dg/uninit-pred-9_b.c: Xfail for CRIS too new 05a03f3986d Extend ldexp{s,d}f3 to vscalefs{s,d} when TARGET_AVX512F an [...] new fed7c1634e8 compiler: don't crash on a, b := int(0)
The 2 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: contrib/ChangeLog | 4 + contrib/mklog.py | 6 +- gcc/ChangeLog | 67 ++++ gcc/DATESTAMP | 2 +- gcc/c/ChangeLog | 6 + gcc/c/c-typeck.c | 2 +- gcc/config/i386/constraints.md | 10 +- gcc/config/i386/i386-expand.c | 13 +- gcc/config/i386/i386.c | 11 +- gcc/config/i386/i386.md | 34 +- gcc/config/i386/sse.md | 99 ++++- gcc/cp/ChangeLog | 42 ++ gcc/cp/parser.c | 421 +++++++++++++++++++-- gcc/cp/parser.h | 7 +- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/expressions.cc | 15 +- gcc/testsuite/ChangeLog | 69 ++++ gcc/testsuite/g++.dg/gomp/attrs-1.C | 12 +- gcc/testsuite/g++.dg/gomp/attrs-10.C | 240 ++++++++++++ gcc/testsuite/g++.dg/gomp/attrs-11.C | 74 ++++ gcc/testsuite/g++.dg/gomp/attrs-2.C | 2 +- gcc/testsuite/gcc.dg/tree-ssa/pr101824.c | 19 + gcc/testsuite/gcc.dg/uninit-pred-9_b.c | 2 +- gcc/testsuite/gcc.dg/vla-stexp-1.c | 18 + gcc/testsuite/gcc.target/i386/amxbf16-dpbf16ps-2.c | 6 +- gcc/testsuite/gcc.target/i386/avx2-gather-2.c | 3 +- gcc/testsuite/gcc.target/i386/avx512f-pr80355-1.c | 19 + gcc/testsuite/gcc.target/i386/avx512f-pr80355-2.c | 23 ++ gcc/testsuite/gcc.target/i386/pr88531-1a.c | 2 +- gcc/testsuite/gcc.target/i386/pr98309-1.c | 18 + gcc/testsuite/gcc.target/i386/pr98309-2.c | 39 ++ gcc/testsuite/lib/gfortran.exp | 2 +- gcc/tree-nested.c | 1 + gcc/tree-vect-loop.c | 18 + gcc/tree-vect-stmts.c | 92 +++-- gcc/tree-vectorizer.h | 1 + libgfortran/ChangeLog | 10 + libgfortran/Makefile.am | 9 + libgfortran/Makefile.in | 10 +- 39 files changed, 1345 insertions(+), 85 deletions(-) create mode 100644 gcc/testsuite/g++.dg/gomp/attrs-10.C create mode 100644 gcc/testsuite/g++.dg/gomp/attrs-11.C create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr101824.c create mode 100644 gcc/testsuite/gcc.dg/vla-stexp-1.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512f-pr80355-1.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512f-pr80355-2.c create mode 100644 gcc/testsuite/gcc.target/i386/pr98309-1.c create mode 100644 gcc/testsuite/gcc.target/i386/pr98309-2.c