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_debug in repository toolchain/ci/gcc.
from aee1adf2cdc analyzer: handle __attribute__((const)) [PR104434] adds 4bf3bac1514 Daily bump. adds ffb2c671707 Fix typo in <code>v1ti3. adds 7862f6ccd85 [nvptx] Fix dummy location in gen_comment adds c982d02ffe2 [nvptx] Add shf.{l,r}.wrap insn adds a046033ea0b [nvptx] Add missing t-omp-device isas adds 59b8ade8877 [libgomp, testsuite, nvptx] Add libgomp.c/declare-variant-3-sm*.c adds 9251b457eb8 sccvn: Fix visit_reference_op_call value numbering of vdefs [...] adds a4066d3a509 tree-optimization/104676 - free nb_iterations after loop di [...] adds 39be73d07bb bpf: do not --enable-gcov for bpf-*-* targets adds 029851fe709 Fix clang warning in pt.cc adds 157cc4e0117 libgcc: fix a warning calling find_fde_tail adds 8645370af18 RISC-V: Document the degree of position independence that m [...] adds 916b809fbfd Fortran: frontend code for F2018 QUIET specifier to STOP an [...] adds ae3c4e521dd Fix attr-retain-* tescases for 32-bit PowerPC.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 43 ++++++++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 31 ++++++++++ gcc/c/ChangeLog | 6 ++ gcc/config/i386/sse.md | 4 +- gcc/config/nvptx/nvptx.cc | 10 +++- gcc/config/nvptx/nvptx.md | 16 ++++++ gcc/config/nvptx/t-omp-device | 2 +- gcc/configure | 14 ++++- gcc/configure.ac | 10 +++- gcc/cp/pt.cc | 2 +- gcc/doc/invoke.texi | 4 ++ gcc/fortran/dump-parse-tree.cc | 5 ++ gcc/fortran/match.cc | 62 ++++++++++++++++---- gcc/fortran/resolve.cc | 9 +++ gcc/fortran/trans-stmt.cc | 15 ++++- gcc/testsuite/ChangeLog | 44 +++++++++++++++ gcc/testsuite/g++.dg/torture/pr104601.C | 32 +++++++++++ .../gcc.c-torture/compile/attr-retain-1.c | 2 + .../gcc.c-torture/compile/attr-retain-2.c | 2 + gcc/testsuite/gcc.dg/torture/pr104676.c | 35 ++++++++++++ .../gcc.target/i386/avx512vl-logicsuffix-1.c | 14 +++++ gcc/testsuite/gcc.target/nvptx/rotate-run.c | 23 ++++++++ gcc/testsuite/gcc.target/nvptx/rotate.c | 20 +++++++ gcc/testsuite/gfortran.dg/stop_1.f90 | 44 +++++++++++++++ gcc/testsuite/gfortran.dg/stop_2.f | 31 ++++++++++ gcc/testsuite/gfortran.dg/stop_3.f90 | 22 ++++++++ gcc/testsuite/gfortran.dg/stop_4.f90 | 14 +++++ gcc/tree-loop-distribution.cc | 2 +- gcc/tree-ssa-sccvn.cc | 26 ++++++--- libgcc/configure | 31 ++++++---- libgcc/configure.ac | 17 ++++-- libgcc/unwind-dw2-fde-dip.c | 2 +- .../testsuite/libgomp.c/declare-variant-3-sm30.c | 7 +++ .../testsuite/libgomp.c/declare-variant-3-sm35.c | 7 +++ .../testsuite/libgomp.c/declare-variant-3-sm53.c | 7 +++ .../testsuite/libgomp.c/declare-variant-3-sm70.c | 7 +++ .../testsuite/libgomp.c/declare-variant-3-sm75.c | 7 +++ .../testsuite/libgomp.c/declare-variant-3-sm80.c | 7 +++ libgomp/testsuite/libgomp.c/declare-variant-3.h | 66 ++++++++++++++++++++++ 40 files changed, 654 insertions(+), 50 deletions(-) create mode 100644 gcc/testsuite/g++.dg/torture/pr104601.C create mode 100644 gcc/testsuite/gcc.dg/torture/pr104676.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512vl-logicsuffix-1.c create mode 100644 gcc/testsuite/gcc.target/nvptx/rotate-run.c create mode 100644 gcc/testsuite/gcc.target/nvptx/rotate.c create mode 100644 gcc/testsuite/gfortran.dg/stop_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/stop_2.f create mode 100644 gcc/testsuite/gfortran.dg/stop_3.f90 create mode 100644 gcc/testsuite/gfortran.dg/stop_4.f90 create mode 100644 libgomp/testsuite/libgomp.c/declare-variant-3-sm30.c create mode 100644 libgomp/testsuite/libgomp.c/declare-variant-3-sm35.c create mode 100644 libgomp/testsuite/libgomp.c/declare-variant-3-sm53.c create mode 100644 libgomp/testsuite/libgomp.c/declare-variant-3-sm70.c create mode 100644 libgomp/testsuite/libgomp.c/declare-variant-3-sm75.c create mode 100644 libgomp/testsuite/libgomp.c/declare-variant-3-sm80.c create mode 100644 libgomp/testsuite/libgomp.c/declare-variant-3.h