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-arm-next-defconfig in repository toolchain/ci/gcc.
from 29f23ed79b6 sra: Cap number of sub-access propagations with a param (PR 93435) adds 8416602026d Daily bump. adds 15711e837b2 Fix comma at end of enumerator list seen with -std=c++98. adds 497498c878d lra: Tighten check for reloading paradoxical subregs [PR94052] adds b599bf9d6d1 c++: Reject changing active member of union during initiali [...] adds 98eb7b2ed24 d: Fix ICE in add_symbol_to_partition_1, at lto/lto-partiti [...] adds 837cece888f Darwin: Address translation comments (PR93694). adds dfb25dfe3d3 Darwin: Handle NULL DECL_SIZE_TYPE in machopic_select_secti [...] new 9fc985118d9 libstdc++: Fix path::generic_string allocator handling (PR 94242) new a577c0c2693 libstdc++: Fix experimental::path::generic_string (PR 93245)
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: gcc/ChangeLog | 21 +++ gcc/DATESTAMP | 2 +- gcc/config/darwin.c | 29 ++-- gcc/config/darwin.opt | 96 ++++++------ gcc/cp/ChangeLog | 18 +++ gcc/cp/constexpr.c | 69 ++++++-- gcc/d/ChangeLog | 12 ++ gcc/d/typeinfo.cc | 47 +++--- gcc/lra-constraints.c | 24 +-- gcc/testsuite/ChangeLog | 17 ++ gcc/testsuite/g++.dg/cpp1y/constexpr-union2.C | 9 ++ gcc/testsuite/g++.dg/cpp1y/constexpr-union3.C | 9 ++ gcc/testsuite/g++.dg/cpp1y/constexpr-union4.C | 9 ++ gcc/testsuite/g++.dg/cpp1y/constexpr-union5.C | 15 ++ gcc/testsuite/g++.dg/cpp1y/pr94066-2.C | 19 +++ gcc/testsuite/g++.dg/cpp1y/pr94066-3.C | 16 ++ gcc/testsuite/g++.dg/cpp1y/pr94066.C | 18 +++ gcc/testsuite/g++.dg/cpp2a/constexpr-union1.C | 18 +++ gcc/testsuite/g++.target/aarch64/pr94052.C | 174 +++++++++++++++++++++ include/ChangeLog | 6 + include/lto-symtab.h | 2 +- include/plugin-api.h | 2 +- libstdc++-v3/ChangeLog | 17 ++ libstdc++-v3/include/bits/fs_path.h | 11 +- libstdc++-v3/include/experimental/bits/fs_path.h | 40 +++-- .../filesystem/path/generic/94242.cc} | 41 ++--- .../filesystem/path/generic/generic_string.cc | 32 ++++ .../filesystem/path/generic/generic_string.cc | 46 ++++-- 28 files changed, 679 insertions(+), 140 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp1y/constexpr-union2.C create mode 100644 gcc/testsuite/g++.dg/cpp1y/constexpr-union3.C create mode 100644 gcc/testsuite/g++.dg/cpp1y/constexpr-union4.C create mode 100644 gcc/testsuite/g++.dg/cpp1y/constexpr-union5.C create mode 100644 gcc/testsuite/g++.dg/cpp1y/pr94066-2.C create mode 100644 gcc/testsuite/g++.dg/cpp1y/pr94066-3.C create mode 100644 gcc/testsuite/g++.dg/cpp1y/pr94066.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/constexpr-union1.C create mode 100644 gcc/testsuite/g++.target/aarch64/pr94052.C copy libstdc++-v3/testsuite/{experimental/filesystem/path/generic/generic_string.c [...]