This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check/master-arm in repository toolchain/ci/gcc.
from 5940b4e59f8 libgccjit: Support getting the size of a float [PR105829] adds b370ed0bf93 libstdc++: Make std::hash<basic_string<>> allocator-agnosti [...] adds 1753a712010 PR rtl-optimization/7061: Complex number arguments on x86_6 [...] adds 1e65f2ed990 libstdc++: Fix lifetime bugs for non-TLS eh_globals [PR105880] adds 671970a5621 libstdc++: Make std::lcm and std::gcd detect overflow [PR105844] adds 1459b55d24c libgomp nvptx plugin: Remove '--with-cuda-driver=[...]' etc [...] new c08ba00487c c++: Adjust module initializer calling emission
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/cp-tree.h | 2 +- gcc/cp/decl2.cc | 47 +++---- gcc/cp/module.cc | 110 ++++++++-------- gcc/expr.cc | 18 ++- gcc/testsuite/g++.dg/modules/init-3_a.C | 17 +++ gcc/testsuite/g++.dg/modules/init-3_b.C | 6 + gcc/testsuite/g++.dg/modules/init-3_c.C | 17 +++ gcc/testsuite/gcc.target/i386/pr7061-1.c | 4 + gcc/testsuite/gcc.target/i386/pr7061-2.c | 5 + libgomp/Makefile.in | 50 ++++--- libgomp/configure | 143 +-------------------- libgomp/plugin/Makefrag.am | 25 ++-- libgomp/plugin/configfrag.ac | 90 +------------ libgomp/testsuite/Makefile.in | 5 - libgomp/testsuite/lib/libgomp.exp | 13 -- libgomp/testsuite/libgomp-test-support.exp.in | 3 - libstdc++-v3/include/bits/basic_string.h | 102 +++++++-------- libstdc++-v3/include/experimental/numeric | 46 ++++--- libstdc++-v3/include/std/numeric | 75 ++++++----- libstdc++-v3/include/std/string | 33 ----- libstdc++-v3/libsupc++/eh_globals.cc | 51 ++++++-- .../testsuite/21_strings/basic_string/hash/hash.cc | 16 +++ .../21_strings/basic_string/hash/hash_char8_t.cc | 12 ++ libstdc++-v3/testsuite/26_numerics/gcd/105844.cc | 21 +++ libstdc++-v3/testsuite/26_numerics/gcd/gcd_neg.cc | 10 +- libstdc++-v3/testsuite/26_numerics/lcm/105844.cc | 22 ++++ libstdc++-v3/testsuite/26_numerics/lcm/lcm_neg.cc | 10 +- 27 files changed, 414 insertions(+), 539 deletions(-) create mode 100644 gcc/testsuite/g++.dg/modules/init-3_a.C create mode 100644 gcc/testsuite/g++.dg/modules/init-3_b.C create mode 100644 gcc/testsuite/g++.dg/modules/init-3_c.C create mode 100644 gcc/testsuite/gcc.target/i386/pr7061-1.c create mode 100644 gcc/testsuite/gcc.target/i386/pr7061-2.c create mode 100644 libstdc++-v3/testsuite/26_numerics/gcd/105844.cc create mode 100644 libstdc++-v3/testsuite/26_numerics/lcm/105844.cc