This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-aarch64-bootstrap in repository toolchain/ci/gcc.
from 9b239d05ffd c++: Do not warn about lifetime of std::initializer_list<T> [...] adds 2e6e0d86a06 c++: variadic ttp constraint subsumption [PR99904] adds 1a7d452c092 ipa: Fix ICE when speculating calls from inlined functions [...] adds 555fa3545ef Introduce smul_highpart and umul_highpart RTX for high-part [...] adds 5c1838c0165 tree-object-size: Drop unused pdecl and poff arguments adds 561078480ff libstdc++: Avoid debug checks in uniform container erasure [...] adds 0e90799071e libstdc++: Avoid use of hardware interference non-constant [...] adds ae2df1a347f ctf: Do not warn for CTF not supported for GNU GIMPLE new 1848fbf0546 ctfc: Free CTF container elements in ctfc_delete_container ()
The 1 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/cp/pt.c | 2 + gcc/ctfc.c | 9 ++- gcc/doc/invoke.texi | 12 ++-- gcc/doc/md.texi | 6 +- gcc/doc/rtl.texi | 12 ++++ gcc/dwarf2out.c | 2 + gcc/ipa-prop.c | 40 ++++++++---- gcc/rtl.def | 5 ++ gcc/simplify-rtx.c | 72 +++++++++++++++++++++- gcc/testsuite/g++.dg/cpp2a/concepts-ttp4.C | 9 +++ gcc/testsuite/gcc.target/i386/sse2-mmx-paddsb-2.c | 33 ++++++++++ gcc/testsuite/gcc.target/i386/sse2-mmx-paddusb-2.c | 25 ++++++++ gcc/testsuite/gcc.target/i386/sse2-mmx-psubsb-2.c | 33 ++++++++++ gcc/testsuite/gcc.target/i386/sse2-mmx-psubusb-2.c | 25 ++++++++ gcc/toplev.c | 12 ++-- gcc/tree-object-size.c | 42 +++---------- gcc/tree-object-size.h | 3 +- libstdc++-v3/include/bits/atomic_wait.h | 8 +-- libstdc++-v3/include/bits/erase_if.h | 3 +- libstdc++-v3/include/experimental/deque | 8 +-- libstdc++-v3/include/experimental/map | 10 ++- libstdc++-v3/include/experimental/set | 10 ++- libstdc++-v3/include/experimental/unordered_map | 12 +++- libstdc++-v3/include/experimental/unordered_set | 11 +++- libstdc++-v3/include/experimental/vector | 8 +-- libstdc++-v3/include/std/deque | 28 ++++----- libstdc++-v3/include/std/map | 10 ++- libstdc++-v3/include/std/set | 10 ++- libstdc++-v3/include/std/string | 18 +++--- libstdc++-v3/include/std/unordered_map | 12 +++- libstdc++-v3/include/std/unordered_set | 11 +++- libstdc++-v3/include/std/vector | 26 ++++---- 32 files changed, 392 insertions(+), 135 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-ttp4.C create mode 100644 gcc/testsuite/gcc.target/i386/sse2-mmx-paddsb-2.c create mode 100644 gcc/testsuite/gcc.target/i386/sse2-mmx-paddusb-2.c create mode 100644 gcc/testsuite/gcc.target/i386/sse2-mmx-psubsb-2.c create mode 100644 gcc/testsuite/gcc.target/i386/sse2-mmx-psubusb-2.c