This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-aarch64-bootstrap in repository toolchain/ci/gcc.
from 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 adds 04d392e8430 libstdc++: Fix doxygen generation to work with relative paths adds ce8add4b0e0 rs6000: Add nmmintrin.h to extra_headers adds 3cfbe5dc08b rs6000: Guard some x86 intrinsics implementations adds 58f339fc5ea libstdc++: Implement std::random_device::entropy() for othe [...] new c6a1fdd6dde doc: Fix typo in name of PowerPC __builtin_cpu_supports built-in
The 1 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/config.gcc | 1 + gcc/config/rs6000/emmintrin.h | 12 +- gcc/config/rs6000/pmmintrin.h | 4 + gcc/config/rs6000/smmintrin.h | 4 + gcc/config/rs6000/tmmintrin.h | 12 ++ gcc/doc/extend.texi | 2 +- gcc/fortran/trans-types.c | 6 +- gcc/testsuite/gcc.target/powerpc/sse4_2-pcmpgtq.c | 4 +- gcc/tree-vect-data-refs.c | 113 ++++++++----- gcc/tree-vect-stmts.c | 26 +-- gcc/tree-vectorizer.h | 2 +- .../include/coi/source/COIBuffer_source.h | 2 +- libstdc++-v3/doc/Makefile.am | 20 ++- libstdc++-v3/doc/Makefile.in | 20 ++- 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 + libstdc++-v3/src/c++11/random.cc | 70 +++++++- .../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 ++ .../26_numerics/random/random_device/entropy.cc | 37 +++++ 27 files changed, 832 insertions(+), 136 deletions(-) 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 create mode 100644 libstdc++-v3/testsuite/26_numerics/random/random_device/entropy.cc