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-release-aarch64-stable-allnoconfig in repository toolchain/ci/gcc.
from 7edf9fa1c5f ARM: Fix -mpure-code for v6m adds 45d71b554b9 Daily bump. adds c6b81c45198 c++: Fix rejects-valid bug in cxx_eval_outermost_constant_e [...] adds d0eff1793dc store-merging: Fix coalesce_immediate_stores [PR93820] adds 0ce89ea10d9 rs6000: mark clobber for registers changed by untpyed_call adds 84a5534ce2f PR libstdc++/78552 only construct std::locale for C locale once adds 1b522a79133 libstdc++: Fix freestanding build (PR 92376) adds 30cb4c78ea6 libstdc++: Fix regressions in unique_ptr::swap (PR 93562) adds 08a70a65670 libstdc++: Replace glibc-specific check for clock_gettime ( [...] new 53280279777 rs6000: fixinc: Skip machine_name fix for powerpc*-*-linux* new 7a7ef79651a libstdc++: Fix description of std::ios::trunc (PR 92886) new a29236a23c0 libstdc++: Fix undefined behaviour in random dist serializa [...]
The 3 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: fixincludes/ChangeLog | 7 + fixincludes/fixinc.in | 2 +- gcc/ChangeLog | 15 ++ gcc/DATESTAMP | 2 +- gcc/config/rs6000/rs6000.md | 4 + gcc/gimple-ssa-store-merging.c | 27 +-- gcc/testsuite/ChangeLog | 15 ++ gcc/testsuite/g++.dg/cpp0x/pr93905.C | 18 ++ gcc/testsuite/gcc.dg/pr93820.c | 26 +++ .../gcc.dg/torture/stackalign/builtin-return-2.c | 40 +++++ libstdc++-v3/ChangeLog | 50 ++++++ libstdc++-v3/acinclude.m4 | 22 +-- libstdc++-v3/configure | 73 ++++++-- libstdc++-v3/include/bits/c++config | 5 +- libstdc++-v3/include/bits/ios_base.h | 2 +- libstdc++-v3/include/bits/random.h | 4 +- libstdc++-v3/include/bits/random.tcc | 198 ++++++++++----------- libstdc++-v3/include/bits/unique_ptr.h | 16 +- libstdc++-v3/libsupc++/new_opa.cc | 15 ++ libstdc++-v3/src/c++98/locale_init.cc | 3 +- .../20_util/unique_ptr/modifiers/93562.cc | 98 ++++++++++ .../testsuite/26_numerics/random/pr60037-neg.cc | 2 +- 22 files changed, 490 insertions(+), 154 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/pr93905.C create mode 100644 gcc/testsuite/gcc.dg/pr93820.c create mode 100644 gcc/testsuite/gcc.dg/torture/stackalign/builtin-return-2.c create mode 100644 libstdc++-v3/testsuite/20_util/unique_ptr/modifiers/93562.cc