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-lts-defconfig in repository toolchain/ci/gcc.
from 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 ( [...] adds 53280279777 rs6000: fixinc: Skip machine_name fix for powerpc*-*-linux* adds 7a7ef79651a libstdc++: Fix description of std::ios::trunc (PR 92886) adds a29236a23c0 libstdc++: Fix undefined behaviour in random dist serializa [...] adds b6678d67c4b c++: Preserve location in maybe_constant_value. adds 1a8996b0a7b c++: Fix decltype of empty pack expansion of parm. adds c51ac417144 c++: Fix constexpr vs. omitted aggregate init. adds f2f70af7c52 cgraph: A COMDAT decl always has non-zero address. adds c890c9650f3 PR c++/92745 - bogus error when initializing array of vectors. adds 65e894738f6 setup branch adds 096ba1951f5 Revert "setup branch" adds 24ed8ed3645 Daily bump. adds 526fadb0109 PPC64, fix documentation for __builtin_crypto_vpmsum* built [...] new a460bf38dc3 sccvn: Punt on ref->size not multiple of 8 for memset (, 12 [...] new b51057817d9 gimplify: Don't optimize register const vars to static [PR93949]
The 2 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 | 35 ++++ gcc/DATESTAMP | 2 +- gcc/config/rs6000/rs6000.md | 4 + gcc/cp/ChangeLog | 24 +++ gcc/cp/constexpr.c | 22 ++- gcc/cp/decl.c | 15 +- gcc/cp/pt.c | 2 +- gcc/doc/extend.texi | 6 +- gcc/gimplify.c | 1 + gcc/symtab.c | 10 +- gcc/testsuite/ChangeLog | 22 +++ gcc/testsuite/g++.dg/cpp0x/constexpr-array24.C | 10 ++ gcc/testsuite/g++.dg/cpp0x/constexpr-static13.C | 17 ++ gcc/testsuite/g++.dg/cpp0x/initlist118.C | 26 +++ gcc/testsuite/g++.dg/cpp0x/variadic-parm1.C | 17 ++ gcc/testsuite/g++.dg/cpp1z/decomp48.C | 8 +- gcc/testsuite/gcc.c-torture/compile/pr93949.c | 7 + gcc/testsuite/gcc.c-torture/execute/pr93945.c | 45 +++++ .../gcc.dg/torture/stackalign/builtin-return-2.c | 40 +++++ gcc/tree-ssa-sccvn.c | 3 +- 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 +- 34 files changed, 644 insertions(+), 169 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-array24.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-static13.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist118.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/variadic-parm1.C create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr93949.c create mode 100644 gcc/testsuite/gcc.c-torture/execute/pr93945.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