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-lts-allmodconfig in repository toolchain/ci/gcc.
from 34d926dba09 analyzer: fix another ICE in constructor-handling [PR96949] adds 87603e56561 floatformat.h: Add bfloat16 support. adds 651c61c3cef libbacktrace: only match magic number at start of line adds 488e33339e6 libbacktrace: correctly swap Mach-O 32-bit file offset adds d6d9be7c6be openacc: Fix race condition in Fortran loop collapse tests adds 3aee3aaf48b openacc: Fix mkoffload SGPR/VGPR count parsing for HSACO v3 adds e929d65b48a amdgcn: Add waitcnt after LDS write instructions adds 8183ebcdc1c openacc: Fix atomic_capture-2.c iteration-ordering issues adds a8a7a97b4e6 libbacktrace: correct memory lengths in Mach-O dsym support adds 494c5103c9e libbacktrace: fix tipo in comment adds 31a05046247 Daily bump. adds 0755f573f08 libbacktrace: avoid ambiguous binary search adds 181f877b6c0 libbacktrace: fetch executable path on macOS adds f56f1a5a755 libbacktrace: don't strip leading underscore on 64-bit PE adds 61c2d476a52 Fortran: Fixes for OpenMP loop-iter privatization (PRs 9510 [...] adds e470d8af81d Implement __builtin_thread_pointer for x86 TLS. adds fb51be60c8e tree-optimization/96978 - fix fallout of BB vectorization o [...] adds 0d7d52131a4 config: Sync largefile.m4 from binutils-gdb adds 783dc66f9cc enable live condition vectorization adds cbc12c58246 gfortran.dg/gomp/combined-if.f90: Update nvptx tree-dump times adds db918db2c30 enable live comparison vectorization adds 505590b796d [nvptx] Fix boolean type test in write_fn_proto adds 58905f90434 fix useless unsharing of SLP tree adds 4e03e2e08b9 c++: Fix resolving the address of overloaded pmf [PR96647] adds 5d3c12e4184 [nvptx] Fix Wformat in nvptx_assemble_decl_begin adds ad2a37157d3 If the lto plugin encounters a file with multiple symbol se [...]
No new revisions were added by this update.
Summary of changes: config/largefile.m4 | 45 ++++-- gcc/ChangeLog | 39 +++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 21 +++ gcc/config/gcn/gcn-valu.md | 2 +- gcc/config/gcn/gcn.md | 8 +- gcc/config/gcn/mkoffload.c | 40 +++-- gcc/config/i386/i386.md | 10 ++ gcc/config/nvptx/nvptx.c | 4 +- gcc/cp/class.c | 13 ++ gcc/cp/cp-tree.h | 1 + gcc/cp/decl2.c | 3 +- gcc/fortran/ChangeLog | 4 + gcc/fortran/openmp.c | 27 +--- gcc/fortran/resolve.c | 2 + gcc/fortran/trans-openmp.c | 8 +- gcc/testsuite/ChangeLog | 16 ++ gcc/testsuite/g++.dg/cpp0x/auto-96647.C | 10 ++ gcc/testsuite/g++.dg/cpp0x/error9.C | 6 + gcc/testsuite/g++.dg/cpp2a/concepts-fn6.C | 10 ++ gcc/testsuite/gcc.dg/vect/vect-cond-13.c | 38 +++++ gcc/testsuite/gcc.dg/vect/vect-live-6.c | 31 ++++ .../gcc.target/i386/builtin_thread_pointer.c | 28 ++++ gcc/testsuite/gcc.target/i386/pr87007-4.c | 2 +- gcc/testsuite/gcc.target/i386/pr87007-5.c | 2 +- gcc/testsuite/gfortran.dg/gomp/combined-if.f90 | 4 +- gcc/testsuite/gfortran.dg/gomp/openmp-simd-5.f90 | 24 +++ gcc/tree-vect-slp.c | 7 +- gcc/tree-vect-stmts.c | 17 -- include/ChangeLog | 5 + include/floatformat.h | 3 + libbacktrace/ChangeLog | 19 +++ libbacktrace/dwarf.c | 180 +++++++++++++++------ libbacktrace/fileline.c | 38 ++++- libbacktrace/filetype.awk | 24 +-- libbacktrace/macho.c | 44 ++--- libbacktrace/pecoff.c | 20 ++- libbacktrace/simple.c | 2 +- libgomp/ChangeLog | 10 ++ .../libgomp.oacc-c-c++-common/atomic_capture-2.c | 92 +++++------ .../testsuite/libgomp.oacc-fortran/collapse-1.f90 | 3 + .../testsuite/libgomp.oacc-fortran/collapse-2.f90 | 3 + libiberty/ChangeLog | 31 ++++ libiberty/floatformat.c | 19 ++- libphobos/ChangeLog | 14 ++ lto-plugin/lto-plugin.c | 31 +++- 46 files changed, 734 insertions(+), 228 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/auto-96647.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/error9.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-fn6.C create mode 100644 gcc/testsuite/gcc.dg/vect/vect-cond-13.c create mode 100644 gcc/testsuite/gcc.dg/vect/vect-live-6.c create mode 100644 gcc/testsuite/gcc.target/i386/builtin_thread_pointer.c create mode 100644 gcc/testsuite/gfortran.dg/gomp/openmp-simd-5.f90