This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check/master-arm in repository toolchain/ci/gcc.
from b31cec9c22b Add __attribute__ ((tainted_args)) adds b77e3b4e458 Fix ICE of unrecognizable insn. [PR target/104001] adds 17df585a3a6 tree-optimization/104009: Conservative underflow estimate i [...] adds 89b4e316a02 ARM: fix -Wformat= error new 51e9e8a2e20 x86_64: Improvements to arithmetic right shifts of V1TImode [...] new 7f390f11b44 libstdc++: Document new std::random_device tokens new d67ba1dce97 libstdc++: Use std::construct_at in std::common_iterator [P [...] new fc6f1128ae6 libstdc++: Ignore cv-quals when std::allocator<void> constructs new 9a0b518a82d libstdc++: Add C++20 std::make_shared enhancements (P0674R1) new b3989a7b106 arc: Update stack size computation when accumulator registe [...] new 68a650ba57a arc: Add DWARF2 alternate CFA column.
The 7 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/common/config/arm/arm-common.c | 2 +- gcc/config/arc/arc.c | 9 +- gcc/config/arc/arc.h | 11 +- gcc/config/i386/i386-expand.c | 265 +++++++----------- gcc/config/i386/i386.md | 11 +- gcc/testsuite/gcc.dg/builtin-object-size-1.c | 27 ++ gcc/testsuite/gcc.dg/builtin-object-size-3.c | 34 ++- gcc/testsuite/gcc.dg/builtin-object-size-4.c | 6 +- gcc/testsuite/gcc.dg/builtin-object-size-5.c | 2 + gcc/testsuite/gcc.target/arc/cancel-1.c | 31 +++ gcc/testsuite/gcc.target/i386/pr104001.c | 21 ++ gcc/tree-object-size.c | 15 +- libgcc/config/arc/linux-unwind.h | 9 +- libstdc++-v3/doc/html/manual/status.html | 13 + libstdc++-v3/doc/xml/manual/status_cxx2011.xml | 30 +++ libstdc++-v3/include/bits/shared_ptr.h | 271 ++++++++++++++++++- libstdc++-v3/include/bits/shared_ptr_base.h | 299 ++++++++++++++++++++- libstdc++-v3/include/bits/stl_construct.h | 4 +- libstdc++-v3/include/bits/stl_iterator.h | 8 +- libstdc++-v3/include/std/version | 6 +- libstdc++-v3/testsuite/20_util/allocator/void.cc | 15 ++ .../testsuite/20_util/shared_ptr/creation/99006.cc | 7 +- .../testsuite/20_util/shared_ptr/creation/array.cc | 224 +++++++++++++++ .../20_util/shared_ptr/creation/overwrite.cc | 143 ++++++++++ .../20_util/shared_ptr/creation/version.cc | 18 ++ .../20_util/unique_ptr/creation/for_overwrite.cc | 25 +- .../testsuite/24_iterators/common_iterator/1.cc | 16 ++ 27 files changed, 1301 insertions(+), 221 deletions(-) create mode 100644 gcc/testsuite/gcc.target/arc/cancel-1.c create mode 100644 gcc/testsuite/gcc.target/i386/pr104001.c create mode 100644 libstdc++-v3/testsuite/20_util/shared_ptr/creation/array.cc create mode 100644 libstdc++-v3/testsuite/20_util/shared_ptr/creation/overwrite.cc create mode 100644 libstdc++-v3/testsuite/20_util/shared_ptr/creation/version.cc