This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check/master-arm in repository toolchain/ci/gcc.
from 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 adds 8753b13a31c IBM Z: fix `section type conflict` with -mindirect-branch-table adds 19b8946dbda libstdc++: Improve config output for --enable-cstdio [PR104301] adds 90263a48303 libstdc++: Fix doxygen comment for filesystem::perms operators adds ec09a5335f0 libstdc++: Reset filesystem::recursive_directory_iterator on error adds 2dc2f417288 libstdc++: Add more tests for filesystem directory iterators
No new revisions were added by this update.
Summary of changes: 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/t-rs6000 | 2 +- gcc/config/s390/s390.cc | 1 - gcc/cp/pt.cc | 42 +++++-- gcc/fortran/simplify.cc | 3 + gcc/testsuite/c-c++-common/cpp/pr104147.c | 27 ++++ .../g++.dg/cpp0x/lambda/lambda-defarg10.C | 21 ++++ gcc/testsuite/gcc.target/nvptx/stack-atomics-run.c | 44 +++++++ .../gcc.target/s390/nobp-section-type-conflict.c | 22 ++++ gcc/testsuite/gfortran.dg/eoshift_9.f90 | 8 ++ gcc/tree.cc | 17 --- gcc/tree.h | 17 +++ libcpp/directives.cc | 3 +- libcpp/macro.cc | 5 +- .../libgomp.oacc-c-c++-common/private-atomic-1.c | 7 -- .../private-atomic-1-vector.f90 | 7 -- .../private-atomic-1-worker.f90 | 7 -- libstdc++-v3/acinclude.m4 | 4 +- libstdc++-v3/configure | 7 +- libstdc++-v3/include/bits/atomic_wait.h | 12 +- libstdc++-v3/include/bits/fs_fwd.h | 2 +- libstdc++-v3/src/c++17/fs_dir.cc | 12 +- libstdc++-v3/src/filesystem/dir.cc | 12 +- .../testsuite/27_io/filesystem/iterators/97731.cc | 48 ++++++++ .../27_io/filesystem/iterators/error_reporting.cc | 135 ++++++++++++++++++++ .../iterators/recursive_directory_iterator.cc | 19 +++ .../filesystem/iterators/error_reporting.cc | 136 +++++++++++++++++++++ .../iterators/recursive_directory_iterator.cc | 21 +++- 33 files changed, 780 insertions(+), 165 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.target/nvptx/stack-atomics-run.c create mode 100644 gcc/testsuite/gcc.target/s390/nobp-section-type-conflict.c create mode 100644 gcc/testsuite/gfortran.dg/eoshift_9.f90 create mode 100644 libstdc++-v3/testsuite/27_io/filesystem/iterators/97731.cc create mode 100644 libstdc++-v3/testsuite/27_io/filesystem/iterators/error_reporting.cc create mode 100644 libstdc++-v3/testsuite/experimental/filesystem/iterators/error_ [...]