This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_cross_build/master-aarch64 in repository toolchain/ci/gcc.
from 1af78e731fe Fortran: Fixes and additional tests for shape/ubound/size [ [...] adds 2e4659199e8 openmp: Fortran strictly-structured blocks support adds d438dd2523a testsuite/102861 - adjust gcc.dg/vect/bb-slp-16.c change adds 70e72c3a113 Avoid threading circular paths. adds 005ebe1c078 Add dump prints when execute_fixup_cfg removes a write only [...] adds 0a717f13355 Remove outdated comment about execute_fixup_cfg adds 36ec4a3c927 Factor out removal of write only stores from execute_fixup_cfg adds 113860301f4 Improve maybe_remove_writeonly_store to do a simple DCE for [...] adds 40dd9d839e5 openmp: For default(none) ignore variables created by ubsan [...] adds f5ef4da3ccd Remove restriction of SLP vectorizing internal function calls adds c8a889fc0e1 i386: Fix wrong codegen for V8HF move without TARGET_AVX512F adds e633f82fb71 testsuite: Fix up gfortran.dg/gomp/strictly*.f90 testcases adds 7878981f1d4 tree-optimization/102847 - properly cost VMAT_INVARIANT loads adds 8516963942b tree-optimization/102847 - adjust VMAT_INVARIANT load costing adds d97fa0d44c2 Move the initial debug_hooks setting adds d6a3c0cfb85 Revert the avoid threading circular paths commit.
No new revisions were added by this update.
Summary of changes: gcc/c-family/c-omp.c | 43 ++++- gcc/config/i386/i386.c | 15 +- gcc/fortran/decl.c | 1 + gcc/fortran/parse.c | 69 +++++-- gcc/fortran/parse.h | 2 +- gcc/fortran/trans-openmp.c | 6 +- gcc/testsuite/c-c++-common/ubsan/pr64888.c | 27 +++ gcc/testsuite/gcc.dg/pr36902.c | 5 +- gcc/testsuite/gcc.dg/vect/bb-slp-16.c | 73 +++---- gcc/testsuite/gcc.target/i386/pr102812.c | 12 ++ gcc/testsuite/gfortran.dg/gomp/cancel-1.f90 | 3 + gcc/testsuite/gfortran.dg/gomp/nesting-3.f90 | 20 +- .../gomp/strictly-structured-block-1.f90 | 214 +++++++++++++++++++++ .../gomp/strictly-structured-block-2.f90 | 139 +++++++++++++ .../gomp/strictly-structured-block-3.f90 | 52 +++++ gcc/toplev.c | 6 +- gcc/tree-cfg.c | 74 ++++--- gcc/tree-vect-slp.c | 1 - gcc/tree-vect-stmts.c | 10 + libgomp/libgomp.texi | 2 +- .../libgomp.fortran/task-reduction-16.f90 | 1 + 21 files changed, 670 insertions(+), 105 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/ubsan/pr64888.c create mode 100644 gcc/testsuite/gcc.target/i386/pr102812.c create mode 100644 gcc/testsuite/gfortran.dg/gomp/strictly-structured-block-1.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/strictly-structured-block-2.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/strictly-structured-block-3.f90