This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_cross_check_gcc/master-aarch64 in repository toolchain/ci/gcc.
from d2161caffbb Change threading comment before pass_ccp pass. adds 0910c516a3d rs6000: Remove unspecs for vec_mrghl[bhw] adds f98359ba9d3 PR target/102785: Correct addsub/subadd patterns on bfin. adds d996799a507 tree-optimization/102827 - avoid stmts in preheader adds 476ca5ade85 Compute negative offset in get_load_store_type adds 9890b12c72c libstdc++: Fix mem-initializer in std::move_only_function [ [...] adds 793d2549b17 Refactor load/store costing adds 5f5baf79927 MAINTAINERS: Add myself for write after approval adds 6b34f5c5ec7 target: Support whitespaces in target attr/pragma. adds e3ef92e79f9 aix: ensure reference to __tls_get_addr is in text section. adds 6920d5a1a28 Fortran: Fix "str" to scalar descriptor conversion [PR92482] adds 82b2e4f8cf5 libstdc++: Implement monadic operations for std::optional ( [...] adds c4ecb11e4f7 libstdc++: Fix std::stack deduction guide adds 5a8832b1659 libstdc++: Change std::variant union member to empty struct adds 93bd0213885 Refactor vect_supportable_dr_alignment adds 7ef0cc44448 Make file utf8 valid input. adds ff0eec94e87 Fortran: Fix 'fn spec' for deferred character length
No new revisions were added by this update.
Summary of changes: MAINTAINERS | 1 + gcc/config/aarch64/aarch64.c | 1 + gcc/config/bfin/bfin.md | 46 ++--- gcc/config/rs6000/altivec.md | 203 ++++++--------------- gcc/config/rs6000/rs6000-p8swap.c | 2 - gcc/config/rs6000/rs6000.c | 85 ++++----- gcc/config/rs6000/vsx.md | 26 ++- gcc/fortran/trans-expr.c | 2 +- gcc/fortran/trans-types.c | 6 +- gcc/testsuite/gcc.dg/pr102827.c | 13 ++ gcc/testsuite/gcc.target/aarch64/pr102375.c | 4 + gcc/testsuite/gcc.target/powerpc/builtins-1.c | 8 +- gcc/testsuite/gfortran.dg/bind-c-char-descr.f90 | 57 ++++-- gcc/tree-if-conv.c | 21 ++- gcc/tree-vect-data-refs.c | 121 +++++++----- gcc/tree-vect-stmts.c | 100 +++++----- gcc/tree-vectorizer.h | 6 +- .../include/coi/source/COIBuffer_source.h | 2 +- libstdc++-v3/include/bits/mofunc_impl.h | 2 +- libstdc++-v3/include/bits/stl_stack.h | 2 +- libstdc++-v3/include/std/optional | 182 +++++++++++++++++- libstdc++-v3/include/std/ranges | 42 +---- libstdc++-v3/include/std/variant | 4 +- libstdc++-v3/include/std/version | 3 + .../testsuite/20_util/move_only_function/cons.cc | 27 +++ .../testsuite/20_util/optional/monadic/and_then.cc | 120 ++++++++++++ .../testsuite/20_util/optional/monadic/or_else.cc | 103 +++++++++++ .../20_util/optional/monadic/or_else_neg.cc | 30 +++ .../20_util/optional/monadic/transform.cc | 123 +++++++++++++ .../testsuite/20_util/optional/monadic/version.cc | 10 + .../testsuite/23_containers/stack/deduction.cc | 14 ++ 31 files changed, 982 insertions(+), 384 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/pr102827.c create mode 100644 gcc/testsuite/gcc.target/aarch64/pr102375.c create mode 100644 libstdc++-v3/testsuite/20_util/optional/monadic/and_then.cc create mode 100644 libstdc++-v3/testsuite/20_util/optional/monadic/or_else.cc create mode 100644 libstdc++-v3/testsuite/20_util/optional/monadic/or_else_neg.cc create mode 100644 libstdc++-v3/testsuite/20_util/optional/monadic/transform.cc create mode 100644 libstdc++-v3/testsuite/20_util/optional/monadic/version.cc