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_build/master-arm in repository toolchain/ci/gcc.
from 90c3a622723 More consistently dump GIMPLE FE consumable stmts adds 4b8ca6c6177 Ranger: More efficient zero/nonzero check. adds e828f4b5898 Use TYPE_MIN/MAX_VALUE in set_varying when possible. adds 3ca950c3525 Introduce a param-switch-limit for EVRP. adds ad451b020a2 Add range intersect with 2 wide-ints. adds 881d1689a42 libstdc++: Implement std::move_only_function for C++23 (P0288R9)
No new revisions were added by this update.
Summary of changes: gcc/doc/invoke.texi | 3 + gcc/gimple-range-cache.cc | 11 +- gcc/gimple-range-edge.cc | 7 +- gcc/gimple-range-edge.h | 3 +- gcc/gimple-range-fold.cc | 14 +- gcc/gimple-range-gori.cc | 6 +- gcc/params.opt | 4 + gcc/value-range.cc | 69 +++++++ gcc/value-range.h | 16 +- libstdc++-v3/include/Makefile.am | 2 + libstdc++-v3/include/Makefile.in | 2 + libstdc++-v3/include/bits/mofunc_impl.h | 200 ++++++++++++++++++++ libstdc++-v3/include/bits/move_only_function.h | 204 +++++++++++++++++++++ libstdc++-v3/include/std/functional | 3 + libstdc++-v3/include/std/version | 1 + .../testsuite/20_util/move_only_function/call.cc | 199 ++++++++++++++++++++ .../testsuite/20_util/move_only_function/cons.cc | 98 ++++++++++ .../testsuite/20_util/move_only_function/move.cc | 109 +++++++++++ .../20_util/move_only_function/version.cc | 10 + 19 files changed, 942 insertions(+), 19 deletions(-) create mode 100644 libstdc++-v3/include/bits/mofunc_impl.h create mode 100644 libstdc++-v3/include/bits/move_only_function.h create mode 100644 libstdc++-v3/testsuite/20_util/move_only_function/call.cc create mode 100644 libstdc++-v3/testsuite/20_util/move_only_function/cons.cc create mode 100644 libstdc++-v3/testsuite/20_util/move_only_function/move.cc create mode 100644 libstdc++-v3/testsuite/20_util/move_only_function/version.cc