This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-aarch64-build_cross in repository toolchain/ci/gcc.
from af863ef9354 x86: Also pass -mno-sse to vect8-ret.c adds 0e1bb3c88c7 libstdc++: Add missing std::move to join_view::iterator cto [...] adds 4414057186b libstdc++: Fix up implementation of LWG 3533 [PR101589] adds 14d8a5ae472 libstdc++: Add missing std::move to ranges::copy/move/rever [...] adds 06d0437d4a5 compiler, runtime: support unsafe.Add and unsafe.Slice adds 7459bfa8a37 compiler, runtime: allow slice to array pointer conversion adds 724adffe65e Support cond_add/sub/mul/div for vector float/double. adds daaed9e365a tree-cfg: Fix typos on dloop in move_sese_region_to_fn adds 585394d30dc x86: Add testcases for PR target/80566
No new revisions were added by this update.
Summary of changes: gcc/config/i386/sse.md | 54 ++++ gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/expressions.cc | 280 ++++++++++++++++++++- gcc/go/gofrontend/expressions.h | 4 +- gcc/go/gofrontend/runtime.def | 11 + gcc/go/gofrontend/types.cc | 7 + gcc/go/gofrontend/unsafe.cc | 16 ++ gcc/testsuite/g++.target/i386/pr80566-1.C | 15 ++ gcc/testsuite/g++.target/i386/pr80566-2.C | 14 ++ .../i386/cond_op_addsubmuldiv_double-1.c | 31 +++ .../i386/cond_op_addsubmuldiv_double-2.c | 85 +++++++ .../gcc.target/i386/cond_op_addsubmuldiv_float-1.c | 9 + .../gcc.target/i386/cond_op_addsubmuldiv_float-2.c | 4 + gcc/testsuite/go.test/test/convert4.go | 86 +++++++ gcc/testsuite/go.test/test/unsafebuiltins.go | 64 +++++ gcc/tree-cfg.c | 10 +- libgo/go/runtime/error.go | 2 + libgo/go/runtime/panic.go | 7 + libgo/go/runtime/slice.go | 29 +++ libstdc++-v3/include/bits/ranges_algo.h | 20 +- libstdc++-v3/include/bits/ranges_algobase.h | 2 +- libstdc++-v3/include/std/ranges | 15 +- .../testsuite/25_algorithms/copy/constrained.cc | 13 + .../testsuite/25_algorithms/move/constrained.cc | 13 + 24 files changed, 764 insertions(+), 29 deletions(-) create mode 100644 gcc/testsuite/g++.target/i386/pr80566-1.C create mode 100644 gcc/testsuite/g++.target/i386/pr80566-2.C create mode 100644 gcc/testsuite/gcc.target/i386/cond_op_addsubmuldiv_double-1.c create mode 100644 gcc/testsuite/gcc.target/i386/cond_op_addsubmuldiv_double-2.c create mode 100644 gcc/testsuite/gcc.target/i386/cond_op_addsubmuldiv_float-1.c create mode 100644 gcc/testsuite/gcc.target/i386/cond_op_addsubmuldiv_float-2.c create mode 100644 gcc/testsuite/go.test/test/convert4.go create mode 100644 gcc/testsuite/go.test/test/unsafebuiltins.go