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-mainline-defconfig in repository toolchain/ci/gcc.
from b836d522cd1 PR translation/90011 * ipa-devirt.c (compare_virtual_tabl [...] adds fe1f0bcdb57 Hi there, adds 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 [...] new 2cac60b44f0 [aarch64] PR90016 - aarch64: reference to undeclared N in h [...] new b047c9ae758 PR libstdc++/89851 Add testcase for std::variant equality
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 | 29 ++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 5 + gcc/c-family/c-ada-spec.c | 7 +- gcc/config/aarch64/aarch64.opt | 2 +- gcc/config/arm/arm.c | 3 +- gcc/config/arm/constraints.md | 26 +- gcc/config/arm/neon.md | 61 +-- gcc/cp/ChangeLog | 5 + gcc/cp/typeck2.c | 2 +- gcc/expr.c | 3 +- gcc/gimple-ssa-sprintf.c | 16 +- gcc/testsuite/ChangeLog | 19 + gcc/testsuite/gcc.c-torture/execute/pr90025.c | 28 ++ gcc/testsuite/gcc.dg/pr90010.c | 27 ++ .../gcc.dg/torture/neon-immediate-timode.c | 10 + .../gcc.target/i386/ifcvt-onecmpl-abs-1.c | 8 +- libstdc++-v3/ChangeLog | 37 ++ 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 +++++ 29 files changed, 767 insertions(+), 397 deletions(-) create mode 100644 gcc/testsuite/gcc.c-torture/execute/pr90025.c create mode 100644 gcc/testsuite/gcc.dg/pr90010.c create mode 100644 gcc/testsuite/gcc.dg/torture/neon-immediate-timode.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