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 7780dc5b2d0 gcn: Remove useless register keyword adds f7a148304a7 libstdc++: Add nodiscard attribute to filesystem operations adds 08ed796ed08 Make sure checking code is conditional in VN adds 2b0937946b1 Revert maybe_ne -> known_ne change in vn_reference_lookup_3 adds 63abe049992 Avoid unused sbitmap in update_ssa adds 07ac550393d c++: dependent generic lambda template-id [PR106024] adds 288c6cce027 c++: add fixup to missing .template warning adds aefe23f720a c++: tweak resolve_args change adds 9234cdca6ee Add a recursion limit to the demangle_const function in the [...] adds 2ea6c593497 c++: warn about using keywords as identifiers [PR106111] adds f843bea4ca5 i386: Use "r" constraint in *andn<mode>3_doubleword_bmi adds 9a668532fb1 OpenMP: Handle tofrom with target enter/exit data new ecd11acacd6 c++: fix broken copy elision with nested TARGET_EXPRs [PR105550]
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: gcc/c-family/c-common.h | 2 +- gcc/c/c-parser.cc | 22 +++++- gcc/config/i386/i386.md | 2 +- gcc/cp/call.cc | 2 +- gcc/cp/constexpr.cc | 7 ++ gcc/cp/parser.cc | 76 ++++++++++++++++++--- gcc/fortran/dump-parse-tree.cc | 5 ++ gcc/fortran/openmp.cc | 20 ++++-- gcc/testsuite/c-c++-common/gomp/target-data-2.c | 20 ++++++ gcc/testsuite/c-c++-common/gomp/target-data-3.c | 17 +++++ gcc/testsuite/g++.dg/cpp0x/constexpr-elision1.C | 16 +++++ gcc/testsuite/g++.dg/cpp0x/keywords1.C | 15 ++++ gcc/testsuite/g++.dg/cpp1y/constexpr-elision1.C | 53 +++++++++++++++ gcc/testsuite/g++.dg/cpp1y/nsdmi-aggr16.C | 5 +- gcc/testsuite/g++.dg/cpp1y/nsdmi-aggr17.C | 5 +- gcc/testsuite/g++.dg/cpp2a/keywords1.C | 12 ++++ gcc/testsuite/g++.dg/cpp2a/lambda-generic10.C | 14 ++++ gcc/testsuite/gfortran.dg/gomp/target-data-1.f90 | 17 +++++ gcc/testsuite/gfortran.dg/gomp/target-data-2.f90 | 14 ++++ gcc/tree-into-ssa.cc | 22 ++---- gcc/tree-ssa-sccvn.cc | 9 +-- libgomp/libgomp.texi | 2 +- libiberty/rust-demangle.c | 29 +++++--- libstdc++-v3/include/bits/fs_ops.h | 79 ++++++++++++++++++++++ libstdc++-v3/include/experimental/bits/fs_ops.h | 71 +++++++++++++++++++ .../27_io/filesystem/operations/absolute.cc | 2 +- .../testsuite/27_io/filesystem/operations/all.cc | 8 +-- .../27_io/filesystem/operations/canonical.cc | 4 +- .../27_io/filesystem/operations/exists.cc | 2 +- .../27_io/filesystem/operations/is_empty.cc | 4 +- .../27_io/filesystem/operations/read_symlink.cc | 2 +- .../27_io/filesystem/operations/status.cc | 2 +- .../27_io/filesystem/operations/symlink_status.cc | 2 +- .../filesystem/operations/temp_directory_path.cc | 4 +- .../filesystem/operations/canonical.cc | 6 +- .../experimental/filesystem/operations/exists.cc | 2 +- .../experimental/filesystem/operations/is_empty.cc | 4 +- .../filesystem/operations/read_symlink.cc | 2 +- .../filesystem/operations/temp_directory_path.cc | 4 +- 39 files changed, 504 insertions(+), 80 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/target-data-2.c create mode 100644 gcc/testsuite/c-c++-common/gomp/target-data-3.c create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-elision1.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/keywords1.C create mode 100644 gcc/testsuite/g++.dg/cpp1y/constexpr-elision1.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/keywords1.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/lambda-generic10.C create mode 100644 gcc/testsuite/gfortran.dg/gomp/target-data-1.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/target-data-2.f90