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-stable-allnoconfig in repository toolchain/ci/gcc.
from 3a9560cbae7 PR c++/90548 - ICE with generic lambda and empty pack. * [...] adds e037bcf8f21 [C++ PATCH] template specializations adds e02a00b508f Remove pre-Solaris 11/SPARC unwinding support adds 88c39923470 Fix C++14-only code in testsuite utility adds 28d9dbe9902 PR libstdc++/90634 reduce allocations in filesystem::path c [...] adds e761c9a017b * config/pa/pa.c (hppa_profile_hook): Remove offset adjustment. adds 9617e0f87d8 Daily bump. adds 930abdadbc6 2019-05-28 Michael Meissner meissner@linux.ibm.com adds 5c6f8ba06b2 [gcc] adds ed7b4e66bc4 Remove duplicite dg-compile (PR testsuite/90657). adds d454671d218 P1091R3 - Extending structured bindings to be more like va [...] adds 454d5c308c4 P1091R3 - Extending structured bindings to be more like va [...] adds 1e829480013 PR c/90628 * c-common.c (check_builtin_function_arguments [...] adds ae999758f14 * gimplify.c (struct gimplify_omp_ctx): Add clauses member [...] adds 0897885cb91 [PATCH 3/3][GCC][AARCH64] Add support for pointer authentic [...] adds e643926ac10 PR bootstrap/90543 * optc-save-gen.awk: In cl_optimizatio [...] new d7233baccd9 PR fortran/90329 * lang.opt (fbroken-callers): Remove. ( [...] new 662e190cd77 This patch implements the [u]avgM3_floor and [u]avgM3_ceil [...]
The 2 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/ChangeLog | 87 +++++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 7 + gcc/c-family/c-common.c | 7 + gcc/config/aarch64/aarch64-bti-insert.c | 4 +- gcc/config/aarch64/aarch64-builtins.c | 32 ++++- gcc/config/aarch64/aarch64-c.c | 1 + gcc/config/aarch64/aarch64-protos.h | 9 ++ gcc/config/aarch64/aarch64-sve2.md | 65 +++++++++ gcc/config/aarch64/aarch64.c | 54 ++++++- gcc/config/aarch64/aarch64.h | 7 + gcc/config/aarch64/aarch64.md | 27 ++-- gcc/config/aarch64/iterators.md | 44 ++++-- gcc/config/pa/pa.c | 19 +-- gcc/config/rs6000/rs6000-cpus.def | 3 + gcc/cp/ChangeLog | 17 +++ gcc/cp/decl.c | 79 ++++++---- gcc/doc/invoke.texi | 8 +- gcc/fortran/ChangeLog | 14 ++ gcc/fortran/gfortran.h | 3 + gcc/fortran/interface.c | 1 + gcc/fortran/invoke.texi | 20 ++- gcc/fortran/lang.opt | 11 +- gcc/fortran/trans-decl.c | 7 +- gcc/gimplify.c | 45 +++++- gcc/optc-save-gen.awk | 41 +++++- gcc/rtl.h | 4 + gcc/testsuite/ChangeLog | 50 +++++++ .../c-c++-common/builtin-arith-overflow-3.c | 42 ++++++ .../c-c++-common/gomp/lastprivate-conditional-2.c | 2 +- .../c-c++-common/gomp/lastprivate-conditional-3.c | 18 +++ .../c-c++-common/gomp/lastprivate-conditional-4.c | 23 +++ gcc/testsuite/g++.dg/cpp1z/decomp3.C | 7 +- gcc/testsuite/g++.dg/cpp2a/decomp1-aux.cc | 52 +++++++ gcc/testsuite/g++.dg/cpp2a/decomp1.C | 92 ++++++++++++ gcc/testsuite/g++.dg/cpp2a/decomp2.C | 76 ++++++++++ gcc/testsuite/g++.dg/cpp2a/decomp3.C | 26 ++++ gcc/testsuite/gcc.dg/ipa/pr90555.c | 3 +- .../gcc.target/aarch64/sve2/aarch64-sve2.exp | 52 +++++++ gcc/testsuite/gcc.target/aarch64/sve2/average_1.c | 46 ++++++ .../gcc.target/powerpc/localentry-detect-1.c | 12 ++ gcc/testsuite/lib/target-supports.exp | 36 ++++- libgcc/ChangeLog | 21 +++ libgcc/config/aarch64/aarch64-unwind.h | 32 ++++- libgcc/config/sparc/sol2-unwind.h | 92 +----------- libgcc/unwind-dw2-fde.c | 3 + libgcc/unwind-dw2.c | 10 +- libgomp/ChangeLog | 8 ++ ...conditional_4.c => lastprivate-conditional-4.c} | 0 .../lastprivate-conditional-5.c | 143 ++++++++++++++++++ .../lastprivate-conditional-6.c | 159 +++++++++++++++++++++ libstdc++-v3/ChangeLog | 15 ++ libstdc++-v3/include/experimental/bits/fs_path.h | 5 +- libstdc++-v3/src/filesystem/path.cc | 51 ++++++- .../27_io/filesystem/path/construct/90634.cc | 78 ++++++++++ .../filesystem/path/construct/90634.cc | 75 ++++++++++ libstdc++-v3/testsuite/util/testsuite_fs.h | 4 +- 57 files changed, 1653 insertions(+), 198 deletions(-) create mode 100644 gcc/config/aarch64/aarch64-sve2.md create mode 100644 gcc/testsuite/c-c++-common/builtin-arith-overflow-3.c create mode 100644 gcc/testsuite/c-c++-common/gomp/lastprivate-conditional-4.c create mode 100644 gcc/testsuite/g++.dg/cpp2a/decomp1-aux.cc create mode 100644 gcc/testsuite/g++.dg/cpp2a/decomp1.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/decomp2.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/decomp3.C create mode 100644 gcc/testsuite/gcc.target/aarch64/sve2/aarch64-sve2.exp create mode 100644 gcc/testsuite/gcc.target/aarch64/sve2/average_1.c create mode 100644 gcc/testsuite/gcc.target/powerpc/localentry-detect-1.c rename libgomp/testsuite/libgomp.c-c++-common/{lastprivate_conditional_4.c => last [...] create mode 100644 libgomp/testsuite/libgomp.c-c++-common/lastprivate-conditional-5.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/lastprivate-conditional-6.c create mode 100644 libstdc++-v3/testsuite/27_io/filesystem/path/construct/90634.cc create mode 100644 libstdc++-v3/testsuite/experimental/filesystem/path/construct/90634.cc