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_lto in repository toolchain/ci/gcc.
from 874ad5d6745 c++: ICE with auto[] and VLA [PR102414] adds 43ee2127641 MAINTAINERS: Update my email and add myself to the DCO list. adds 691924db0d8 Fix comment for operand_compare::operand_equal_p. adds 1bb52662574 Daily bump. adds 29895166515 [ldist] Don't add lib calls with -fno-tree-loop-distribute- [...] adds be362d5e127 [libgomp, testsuite] Reduce recursion depth in declare_targ [...] adds d43fbc7d3f7 [libgomp, testsuite] Fix insufficient resources in test-cases adds 34afa19d29c fold-const: do not fold NaN result from non-NaN operands [PR95115] adds b9ebf6c330e PR101260 regcprop: Add mode change check for copy reg adds 7e836079071 rs6000: Don't #ifdef "short" built-in names adds e9bf6d6b0e1 veclower: Fix up -fcompare-debug issue in expand_vector_com [...] adds 3ad29854f0b docs: remove --disable-stage1-checking from requirements adds 07a971b28c8 Strengthen memory order for atomic<T>::wait/notify adds ca902055d05 [nvptx] Fix reduction lock adds e0451f93d9f [nvptx] Add some support for .local atomics adds 456de10c549 [nvptx] Handle nop in prevent_branch_around_nothing adds 57f971f9920 [nvptx] Update bar.sync for ptx isa 6.0 adds 8ff0669f6d1 [nvptx] Update default ptx isa to 6.3 adds bba61d403d0 [nvptx] Add bar.warp.sync adds f32f74c2e8c [nvptx] Add uniform_warp_check insn adds b649071d4b3 tree: move tree_vec_map_cache_hasher into header adds 8a378978620 c++: lambda in template default argument [PR103186] adds fa882c3e3bf rs6000: Fix up PCH on powerpc* [PR104323] adds efc46b550f0 libcpp: Avoid PREV_WHITE and other random content on CPP_PA [...] adds 95ac5635409 libcpp: Fix up padding handling in funlike_invocation_p [PR104147] adds 447047a8f95 Fortran: error recovery when simplifying EOSHIFT new 8753b13a31c IBM Z: fix `section type conflict` with -mindirect-branch-table
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: ChangeLog | 4 + MAINTAINERS | 3 +- contrib/ChangeLog | 5 + gcc/ChangeLog | 42 +++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 10 + gcc/config/nvptx/nvptx-opts.h | 1 + gcc/config/nvptx/nvptx.cc | 59 +++- gcc/config/nvptx/nvptx.h | 1 + gcc/config/nvptx/nvptx.md | 132 +++++++- gcc/config/nvptx/nvptx.opt | 2 +- gcc/config/rs6000/rs6000-gen-builtins.cc | 109 ++----- gcc/config/rs6000/rs6000-overload.def | 344 +++++++++++---------- gcc/config/rs6000/t-rs6000 | 2 +- gcc/config/s390/s390.cc | 1 - gcc/cp/ChangeLog | 25 ++ gcc/cp/pt.cc | 42 ++- gcc/d/ChangeLog | 5 + gcc/doc/install.texi | 5 - gcc/fold-const.cc | 11 + gcc/fold-const.h | 2 +- gcc/fortran/simplify.cc | 3 + gcc/regcprop.cc | 3 +- gcc/testsuite/ChangeLog | 39 +++ gcc/testsuite/c-c++-common/cpp/pr104147.c | 27 ++ .../g++.dg/cpp0x/lambda/lambda-defarg10.C | 21 ++ gcc/testsuite/gcc.dg/pr95115.c | 25 ++ gcc/testsuite/gcc.dg/tree-ssa/ldist-strlen-4.c | 17 + gcc/testsuite/gcc.target/i386/pr104307.c | 6 + gcc/testsuite/gcc.target/nvptx/stack-atomics-run.c | 44 +++ .../gcc.target/s390/nobp-section-type-conflict.c | 22 ++ gcc/testsuite/gcc.target/s390/pr101260.c | 63 ++++ gcc/testsuite/gfortran.dg/eoshift_9.f90 | 8 + gcc/tree-loop-distribution.cc | 5 +- gcc/tree-vect-generic.cc | 38 +-- gcc/tree.cc | 17 - gcc/tree.h | 17 + libatomic/ChangeLog | 5 + libcpp/directives.cc | 3 +- libcpp/macro.cc | 5 +- libgomp/ChangeLog | 5 + .../examples-4/declare_target-1.f90 | 4 +- .../examples-4/declare_target-2.f90 | 6 +- .../libgomp.oacc-c-c++-common/broadcast-many.c | 9 +- .../par-loop-comb-reduction-4.c | 10 +- .../libgomp.oacc-c-c++-common/private-atomic-1.c | 7 - .../libgomp.oacc-c-c++-common/reduction-7.c | 9 +- .../private-atomic-1-vector.f90 | 7 - .../private-atomic-1-worker.f90 | 7 - libiberty/ChangeLog | 12 + libitm/ChangeLog | 5 + libstdc++-v3/ChangeLog | 5 + libstdc++-v3/include/bits/atomic_wait.h | 12 +- 53 files changed, 913 insertions(+), 360 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/cpp/pr104147.c create mode 100644 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-defarg10.C create mode 100644 gcc/testsuite/gcc.dg/pr95115.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/ldist-strlen-4.c create mode 100644 gcc/testsuite/gcc.target/i386/pr104307.c create mode 100644 gcc/testsuite/gcc.target/nvptx/stack-atomics-run.c create mode 100644 gcc/testsuite/gcc.target/s390/nobp-section-type-conflict.c create mode 100644 gcc/testsuite/gcc.target/s390/pr101260.c create mode 100644 gcc/testsuite/gfortran.dg/eoshift_9.f90