This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk/gnu-master-aarch64-spec2k6-Os_LTO in repository toolchain/ci/gcc.
from a9c7b78d2ea PR translation/90011 * typeck2.c (check_narrowing): Remov [...] adds e4da4897aba Add PSTL internal namespace qualifications adds 670b91563cc * gcc.target/i386/ifcvt-onecmpl-abs-1.c (dg-options): Use [...] adds faa382bd356 PR libstdc++/90008 remove unused capture from variant rel ops adds 47cf9c4c65d Fix std::visit to support arbitrary callables adds 492debfa44e Add comments and style fixes to <variant> adds b4e67beb072 * c-ada-spec.c (print_destructor): Deal with deleting dest [...] adds 409356fc0ab Daily bump. adds 92a180c651e PR c++/90010 * gimple-ssa-sprintf.c (target_to_host): Fix [...] adds 4e99a8770ce PR middle-end/90025 * expr.c (store_expr): Set properly s [...] adds 2cac60b44f0 [aarch64] PR90016 - aarch64: reference to undeclared N in h [...] adds b047c9ae758 PR libstdc++/89851 Add testcase for std::variant equality adds 6883ce8328e 2019-04-10 Richard Biener rguenther@suse.de adds 24dc4071830 Make gcov docs more precise (PR gcov-profile/89959). new c6b644142a7 Clearly document behaviour of multiple -g options new ccd474323d2 Fix a stack exhaustion bug in libiberty's demangler when de [...] new 706bf2a5326 Fix typo in effective-target check new 302001799da Change wording of -fipa-icf documentation
The 4 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 | 44 +++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 5 + gcc/c-family/c-ada-spec.c | 7 +- gcc/config/aarch64/aarch64.opt | 2 +- gcc/doc/gcov.texi | 6 +- gcc/doc/invoke.texi | 5 +- gcc/expr.c | 3 +- gcc/gimple-ssa-sprintf.c | 16 +- gcc/testsuite/ChangeLog | 14 + gcc/testsuite/gcc.c-torture/execute/pr90025.c | 28 ++ gcc/testsuite/gcc.dg/pr90010.c | 27 ++ .../gcc.target/i386/ifcvt-onecmpl-abs-1.c | 8 +- gcc/tree-vect-data-refs.c | 75 ++-- gcc/tree-vect-stmts.c | 13 - gcc/tree-vectorizer.h | 5 - libiberty/ChangeLog | 13 + libiberty/cp-demangle.c | 48 +-- libstdc++-v3/ChangeLog | 40 ++ libstdc++-v3/include/pstl/algorithm_impl.h | 427 +++++++++++---------- libstdc++-v3/include/pstl/execution_defs.h | 10 +- libstdc++-v3/include/pstl/execution_impl.h | 22 +- libstdc++-v3/include/pstl/numeric_impl.h | 30 +- libstdc++-v3/include/pstl/parallel_backend_tbb.h | 49 +-- libstdc++-v3/include/pstl/parallel_backend_utils.h | 1 + libstdc++-v3/include/pstl/unseq_backend_simd.h | 8 +- libstdc++-v3/include/std/variant | 155 ++++---- libstdc++-v3/testsuite/20_util/variant/89851.cc | 40 ++ libstdc++-v3/testsuite/20_util/variant/90008.cc | 37 ++ libstdc++-v3/testsuite/20_util/variant/visit.cc | 95 +++++ libstdc++-v3/testsuite/lib/libstdc++.exp | 2 +- 31 files changed, 782 insertions(+), 455 deletions(-) create mode 100644 gcc/testsuite/gcc.c-torture/execute/pr90025.c create mode 100644 gcc/testsuite/gcc.dg/pr90010.c create mode 100644 libstdc++-v3/testsuite/20_util/variant/89851.cc create mode 100644 libstdc++-v3/testsuite/20_util/variant/90008.cc create mode 100644 libstdc++-v3/testsuite/20_util/variant/visit.cc