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-allmodconfig in repository toolchain/ci/gcc.
from eeb31391b7f combine: Fix find_split_point handling of constant store in [...] adds 9c5db942ca3 ARM: Add support for -mpure-code in thumb-1 (v6m) adds 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 new 84a5534ce2f PR libstdc++/78552 only construct std::locale for C locale once new 1b522a79133 libstdc++: Fix freestanding build (PR 92376) new 30cb4c78ea6 libstdc++: Fix regressions in unique_ptr::swap (PR 93562) new 08a70a65670 libstdc++: Replace glibc-specific check for clock_gettime ( [...]
The 4 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/ChangeLog | 43 ++++++++++ gcc/DATESTAMP | 2 +- gcc/config/arm/arm-protos.h | 1 + gcc/config/arm/arm.c | 88 +++++++++++++++++-- gcc/config/arm/arm.h | 8 +- gcc/config/arm/arm.md | 9 ++ gcc/config/arm/thumb1.md | 85 +++++++++++++++---- gcc/config/rs6000/rs6000.md | 4 + gcc/doc/invoke.texi | 3 +- gcc/gimple-ssa-store-merging.c | 27 +++--- gcc/testsuite/ChangeLog | 28 +++++++ gcc/testsuite/g++.dg/cpp0x/pr93905.C | 18 ++++ gcc/testsuite/gcc.dg/pr93820.c | 26 ++++++ .../gcc.dg/torture/stackalign/builtin-return-2.c | 40 +++++++++ gcc/testsuite/gcc.target/arm/pr45701-1.c | 2 +- gcc/testsuite/gcc.target/arm/pr45701-2.c | 2 +- .../gcc.target/arm/pure-code/no-literal-pool.c | 14 +++- .../gcc.target/arm/pure-code/pure-code.exp | 9 +- gcc/testsuite/gcc.target/arm/thumb1-Os-mult.c | 1 + libstdc++-v3/ChangeLog | 35 ++++++++ libstdc++-v3/acinclude.m4 | 22 ++--- libstdc++-v3/configure | 73 ++++++++++++---- libstdc++-v3/include/bits/c++config | 5 +- 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 ++++++++++++++++++++++ 27 files changed, 591 insertions(+), 86 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