This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-aarch64-stable-allyesconfig in repository toolchain/ci/gcc.
from b5228b1bc8c PR middle-end/94004 - missing -Walloca on calls to alloca d [...] adds 6e4cd3cd259 arm: Fix ICE caused by arm_gen_dicompare_reg [PR94292] adds eeb0c7c0713 Fix vector-compare-1 regressions on sh4/sh4eb caused by pat [...] adds 48817fbd761 Fix vector-compare-1 regressions on sh4/sh4eb caused by [...] adds fe4b53b2e7e testsuite: adjustments for amdgcn adds bf1fc37bb4a libstdc++: Define and use chrono::is_clock for C++20 adds e3ef371982a libstdc++ Add missing tests for std::shared_timed_mutex adds 9673d11ec53 libstdc++: Fix author in previous ChangeLog entry adds e97929e20b2 [PATCH] rs6000: vec_rlnm fix to make builtin work according to ABI adds 27f8c8c4c92 Daily bump. adds d21dff5b4fe widening_mul: restrict ops to be defined in the same basic- [...] adds 9708ca2be40 var-tracking: Mark as sp based more VALUEs [PR92264] adds 5a1706f63a2 c++: Fix a -fcompare-debug issue with DEBUG_BEGIN_STMT stmt [...] adds dab932d1519 c++: Fix up user_provided_p [PR81349] adds 10ea09ee846 gimplify: Fix -fcompare-debug differences caused by gimplif [...] adds d6730f06420 Skip test for non-x86 targets. adds da920d0c46c tree: Fix -fcompare-debug issues due to protected_set_expr_ [...] adds 40cdcddf274 Fix UNRESOLVED test-case. adds e519d644999 arm: unified syntax for libgcc when built with -Os [PR94220] adds 16948c54b75 libstdc++: Add some C++20 additions to <chrono>
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 50 +++++ gcc/DATESTAMP | 2 +- gcc/config/arm/arm.c | 2 +- gcc/config/rs6000/altivec.h | 2 +- gcc/config/sh/sh.md | 8 +- gcc/cp/ChangeLog | 9 + gcc/cp/class.c | 10 +- gcc/cp/cp-gimplify.c | 29 +++ gcc/gimple.h | 14 +- gcc/gimplify.c | 35 +++- gcc/testsuite/ChangeLog | 44 +++++ gcc/testsuite/g++.dg/cpp1z/pr81349.C | 29 +++ gcc/testsuite/g++.dg/debug/pr94272.C | 14 ++ gcc/testsuite/g++.dg/debug/pr94281.C | 11 ++ gcc/testsuite/g++.dg/debug/pr94323.C | 13 ++ gcc/testsuite/gcc.dg/lto/pr94271_0.c | 2 + gcc/testsuite/gcc.dg/pr94269.c | 26 +++ gcc/testsuite/gcc.dg/pr94292.c | 13 ++ gcc/testsuite/gcc.dg/vect/bb-slp-pr69907.c | 5 +- gcc/testsuite/gcc.target/i386/pr81213-2.c | 1 + gcc/testsuite/gcc.target/i386/pr81213.c | 5 +- gcc/testsuite/lib/target-supports.exp | 3 +- gcc/tree-ssa-math-opts.c | 6 +- gcc/tree.c | 27 +++ gcc/var-tracking.c | 3 +- libgcc/config/arm/lib1funcs.S | 33 ++-- libstdc++-v3/ChangeLog | 59 ++++++ libstdc++-v3/include/bits/fs_fwd.h | 42 ----- libstdc++-v3/include/std/chrono | 206 +++++++++++++++++++-- libstdc++-v3/include/std/condition_variable | 3 + libstdc++-v3/include/std/future | 3 + libstdc++-v3/include/std/mutex | 3 + libstdc++-v3/include/std/shared_mutex | 6 + libstdc++-v3/include/std/thread | 3 + .../time_point/requirements/duration_neg.cc | 32 ++++ .../30_threads/condition_variable/members/2.cc | 2 + .../condition_variable/members/clock_neg.cc | 61 ++++++ .../condition_variable_any/members/clock_neg.cc | 61 ++++++ .../30_threads/future/members/clock_neg.cc | 59 ++++++ .../recursive_timed_mutex/try_lock_until/3.cc | 2 +- .../try_lock_until/clock_neg.cc | 57 ++++++ .../30_threads/shared_future/members/clock_neg.cc | 59 ++++++ .../30_threads/shared_lock/locking/clock_neg.cc | 59 ++++++ .../try_lock_until/1.cc} | 27 ++- .../try_lock_until/2.cc} | 20 +- .../shared_timed_mutex/try_lock_until/clock_neg.cc | 57 ++++++ .../30_threads/timed_mutex/try_lock_until/3.cc | 2 +- .../30_threads/timed_mutex/try_lock_until/4.cc | 2 +- .../timed_mutex/try_lock_until/clock_neg.cc | 57 ++++++ .../30_threads/unique_lock/locking/clock_neg.cc | 59 ++++++ .../testsuite/std/time/clock/file/members.cc | 39 ++++ .../testsuite/std/time/clock/file/overview.cc | 43 +++++ libstdc++-v3/testsuite/std/time/syn_c++20.cc | 199 ++++++++++++++++++++ libstdc++-v3/testsuite/std/time/traits/is_clock.cc | 141 ++++++++++++++ libstdc++-v3/testsuite/util/slow_clock.h | 3 + 55 files changed, 1643 insertions(+), 119 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp1z/pr81349.C create mode 100644 gcc/testsuite/g++.dg/debug/pr94272.C create mode 100644 gcc/testsuite/g++.dg/debug/pr94281.C create mode 100644 gcc/testsuite/g++.dg/debug/pr94323.C create mode 100644 gcc/testsuite/gcc.dg/pr94269.c create mode 100644 gcc/testsuite/gcc.dg/pr94292.c create mode 100644 libstdc++-v3/testsuite/20_util/time_point/requirements/duration_neg.cc create mode 100644 libstdc++-v3/testsuite/30_threads/condition_variable/members/cl [...] create mode 100644 libstdc++-v3/testsuite/30_threads/condition_variable_any/member [...] create mode 100644 libstdc++-v3/testsuite/30_threads/future/members/clock_neg.cc create mode 100644 libstdc++-v3/testsuite/30_threads/recursive_timed_mutex/try_loc [...] create mode 100644 libstdc++-v3/testsuite/30_threads/shared_future/members/clock_neg.cc create mode 100644 libstdc++-v3/testsuite/30_threads/shared_lock/locking/clock_neg.cc copy libstdc++-v3/testsuite/30_threads/{recursive_timed_mutex/try_lock_until/3.cc [...] copy libstdc++-v3/testsuite/30_threads/{timed_mutex/try_lock_until/4.cc => shared_ [...] create mode 100644 libstdc++-v3/testsuite/30_threads/shared_timed_mutex/try_lock_u [...] create mode 100644 libstdc++-v3/testsuite/30_threads/timed_mutex/try_lock_until/cl [...] create mode 100644 libstdc++-v3/testsuite/30_threads/unique_lock/locking/clock_neg.cc create mode 100644 libstdc++-v3/testsuite/std/time/clock/file/members.cc create mode 100644 libstdc++-v3/testsuite/std/time/clock/file/overview.cc create mode 100644 libstdc++-v3/testsuite/std/time/syn_c++20.cc create mode 100644 libstdc++-v3/testsuite/std/time/traits/is_clock.cc