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-mainline-allmodconfig in repository toolchain/ci/gcc.
from c2079b9a787 Daily bump. adds 11013a48023 Daily bump. adds d800a6e07bb Daily bump. adds eb8ff3cbc09 Don't allow mask/sse/mmx mov in TLS code sequences. adds 2936f551ade tree-optimization/102970 - remap cliques when translating o [...] adds 2f0c8f74dae middle-end/103181 - fix operation_could_trap_p for vector division adds 5571c271926 tree-optimization/103204 - fix missed valueization in VN adds fb1bc2c0865 tree-optimization/103237 - avoid vectorizing unhandled doub [...] adds f3c95819647 IBM Z: Fix load-and-test peephole2 condition adds c224f21418e Fortran: fix lookup for gfortran builtin math intrinsics us [...] adds 423cd47cfc9 libstdc++: Fix inconsistent noexcept-specific for valarray [...] adds 78225f05ce2 Daily bump. adds 58cd66aec9f libstdc++: Fix return values for atomic wait on futex adds fd3f0c66e85 libstdc++: Define macro before it is first checked adds 667339efd8e libstdc++: Use std::addressof in ranges::uninitialized_xxx [...] adds 9a7308bac8c libstdc++: Fix circular dependency for bitmap_allocator [PR103381] adds ec6ba81a038 libstdc++: Fix std::type_info::before for ARM [PR103240] adds fa4a8f3faaa libstdc++: Fix pretty printing of std::unique_ptr [PR103086] adds 8fb9bf6667d rs6000: Fix vec_cpsgn parameter order (PR101985) adds 81b2b5e4c1b Daily bump. new 7510c23c1ec jit: Initialize function::m_blocks in ctor
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/ChangeLog | 63 +++++++++++++ gcc/DATESTAMP | 2 +- gcc/config/i386/constraints.md | 5 + gcc/config/i386/i386-protos.h | 1 + gcc/config/i386/i386.c | 30 ++++++ gcc/config/i386/i386.md | 8 +- gcc/config/rs6000/altivec.h | 2 +- gcc/config/s390/s390.md | 2 +- gcc/fortran/ChangeLog | 14 +++ gcc/fortran/trans-intrinsic.c | 66 +++++++------ gcc/jit/jit-playback.c | 3 +- gcc/testsuite/ChangeLog | 57 +++++++++++ gcc/testsuite/g++.dg/opt/pr102970.C | 60 ++++++++++++ gcc/testsuite/gcc.dg/pr103248.c | 8 ++ gcc/testsuite/gcc.dg/torture/pr103181.c | 24 +++++ gcc/testsuite/gcc.dg/torture/pr103204.c | 16 ++++ gcc/testsuite/gcc.dg/torture/pr103237.c | 24 +++++ gcc/testsuite/gcc.target/i386/pr103275.c | 83 ++++++++++++++++ gcc/testsuite/gcc.target/powerpc/pr101985-1.c | 18 ++++ gcc/testsuite/gcc.target/powerpc/pr101985-2.c | 18 ++++ gcc/testsuite/gcc.target/s390/20211119.c | 12 +++ gcc/testsuite/gfortran.dg/dec_math_5.f90 | 104 +++++++++++++++++++++ gcc/tree-eh.c | 32 ++++++- gcc/tree-ssa-pre.c | 15 +++ gcc/tree-ssa-sccvn.c | 13 ++- gcc/tree-vect-loop.c | 11 +++ libstdc++-v3/ChangeLog | 70 ++++++++++++++ libstdc++-v3/include/bits/atomic_timed_wait.h | 8 +- libstdc++-v3/include/bits/atomic_wait.h | 15 ++- libstdc++-v3/include/bits/range_access.h | 8 +- libstdc++-v3/include/bits/ranges_uninitialized.h | 26 +++--- libstdc++-v3/include/ext/bitmap_allocator.h | 2 +- libstdc++-v3/libsupc++/tinfo2.cc | 5 +- libstdc++-v3/python/libstdcxx/v6/printers.py | 71 ++++++++++---- libstdc++-v3/python/libstdcxx/v6/xmethods.py | 2 +- .../testsuite/18_support/type_info/103240.cc | 36 +++++++ libstdc++-v3/testsuite/util/testsuite_iterators.h | 8 ++ libstdc++-v3/testsuite/util/testsuite_shared.cc | 12 +++ 38 files changed, 853 insertions(+), 101 deletions(-) create mode 100644 gcc/testsuite/g++.dg/opt/pr102970.C create mode 100644 gcc/testsuite/gcc.dg/pr103248.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr103181.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr103204.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr103237.c create mode 100644 gcc/testsuite/gcc.target/i386/pr103275.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr101985-1.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr101985-2.c create mode 100644 gcc/testsuite/gcc.target/s390/20211119.c create mode 100644 gcc/testsuite/gfortran.dg/dec_math_5.f90 create mode 100644 libstdc++-v3/testsuite/18_support/type_info/103240.cc