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 46cd445fc07 contrib: filter out a new Clang warning adds 362e2a9c629 Retain existing range knowledge when prefilling statements. adds 235f88dbc34 docs: Fix 'modff' reference in extend.texi adds 1ba397e9f93 c++: __builtin_shufflevector with value-dep expr [PR105353] adds a5cee0480c1 libstdc++: Add deduction guides for std::packaged_task [PR105375] adds 2fbdcf5e58c libstdc++: Implement constexpr std::unique_ptr for C++23 (P2273R3)
No new revisions were added by this update.
Summary of changes: gcc/cp/typeck.cc | 4 +- gcc/doc/extend.texi | 2 +- gcc/gimple-range.cc | 4 + gcc/testsuite/g++.dg/ext/builtin-shufflevector-3.C | 23 ++++ gcc/testsuite/g++.dg/pr105276.C | 18 +++ libstdc++-v3/include/bits/ptr_traits.h | 5 +- libstdc++-v3/include/bits/unique_ptr.h | 124 +++++++++++++++++---- libstdc++-v3/include/std/future | 11 ++ libstdc++-v3/include/std/version | 4 + .../20_util/unique_ptr/assign/constexpr.cc | 48 ++++++++ .../20_util/unique_ptr/comparison/constexpr.cc | 73 ++++++++++++ .../20_util/unique_ptr/cons/constexpr_c++20.cc | 85 ++++++++++++++ .../20_util/unique_ptr/creation/constexpr.cc | 34 ++++++ .../20_util/unique_ptr/modifiers/constexpr.cc | 68 +++++++++++ .../unique_ptr/specialized_algorithms/constexpr.cc | 46 ++++++++ .../30_threads/packaged_task/cons/deduction.cc | 85 ++++++++++++++ 16 files changed, 611 insertions(+), 23 deletions(-) create mode 100644 gcc/testsuite/g++.dg/ext/builtin-shufflevector-3.C create mode 100644 gcc/testsuite/g++.dg/pr105276.C create mode 100644 libstdc++-v3/testsuite/20_util/unique_ptr/assign/constexpr.cc create mode 100644 libstdc++-v3/testsuite/20_util/unique_ptr/comparison/constexpr.cc create mode 100644 libstdc++-v3/testsuite/20_util/unique_ptr/cons/constexpr_c++20.cc create mode 100644 libstdc++-v3/testsuite/20_util/unique_ptr/creation/constexpr.cc create mode 100644 libstdc++-v3/testsuite/20_util/unique_ptr/modifiers/constexpr.cc create mode 100644 libstdc++-v3/testsuite/20_util/unique_ptr/specialized_algorithm [...] create mode 100644 libstdc++-v3/testsuite/30_threads/packaged_task/cons/deduction.cc