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 371848a7ed3 cgraph: Do not warn about caller count mismatches of remove [...] adds acd7e7b33fd PowerPC: Fix rs6000-gen-builtins with build != host [PR102353] adds d7071e49822 [i386] Change ix86_decompose_address return type to bool. adds db1a65d9364 Fix PR 67102: Add libstdc++ dependancy to libffi adds cfea7b86f24 Fortran - fix handling of optional allocatable DT arguments [...] adds 2e2e65a46d2 c++: constrained variable template issues [PR98486] adds 93b5a667100 rs6000: Handle overloads during program parsing adds f9f1a6efaae libstdc++: Fix UB in atomic_ref/wait_notify.cc [PR101761] new 869107c9c97 libstdc++: Add noexcept to unique_ptr accessors new 9d813ddd978 libstdc++: Add noexcept to std::to_string overloads that do [...] new 2c351dafcbc libstdc++: Fix recipes for C++11-compiled files in src/c++98 new e67917f5df9 libstdc++: Add missing constraint to std::span deduction gu [...] new 734b2c2eedc libstdc++: Add missing 'constexpr' to std::tuple [PR102270] new 21c760510d3 libstdc++: Remove non-deducible parameter for std::advance [...] new cbe705a2f74 libstdc++: Add noexcept to std::nullopt_t constructor new bd0df30a7bc libstdc++: Update documentation that only refers to c++98 a [...] new 43378933060 libstdc++: Increase timeout factor for slow pb_ds tests new fce4e12f8ef libstdc++: Regenerate the src/debug Makefiles as needed
The 10 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: Makefile.def | 1 + Makefile.in | 1 + gcc/config/i386/i386-protos.h | 2 +- gcc/config/i386/i386.c | 48 +- gcc/config/rs6000/rs6000-c.c | 1078 ++++++++++++++++++++ gcc/config/rs6000/rs6000-call.c | 53 + gcc/config/rs6000/rs6000-gen-builtins.c | 2 +- gcc/config/rs6000/t-rs6000 | 17 +- gcc/cp/constraint.cc | 8 +- gcc/cp/decl.c | 11 + gcc/cp/pt.c | 3 +- gcc/fortran/trans-expr.c | 11 + gcc/testsuite/g++.dg/cpp2a/concepts-var-templ1.C | 9 + gcc/testsuite/g++.dg/cpp2a/concepts-var-templ1a.C | 14 + gcc/testsuite/g++.dg/cpp2a/concepts-var-templ1b.C | 15 + gcc/testsuite/gfortran.dg/intent_out_14.f90 | 24 + libstdc++-v3/doc/html/manual/using_macros.html | 2 +- libstdc++-v3/doc/xml/manual/using.xml | 2 +- libstdc++-v3/include/bits/basic_string.h | 12 + libstdc++-v3/include/bits/fs_path.h | 2 +- libstdc++-v3/include/bits/unique_ptr.h | 8 +- libstdc++-v3/include/std/optional | 2 +- libstdc++-v3/include/std/span | 2 +- libstdc++-v3/include/std/tuple | 16 + libstdc++-v3/src/Makefile.am | 2 +- libstdc++-v3/src/Makefile.in | 2 +- libstdc++-v3/src/c++98/Makefile.am | 4 +- libstdc++-v3/src/c++98/Makefile.in | 4 +- libstdc++-v3/testsuite/20_util/tuple/cons/102270.C | 61 ++ .../testsuite/29_atomics/atomic_ref/wait_notify.cc | 7 +- .../ext/pb_ds/regression/tree_map_rand.cc | 2 +- .../ext/pb_ds/regression/tree_set_rand.cc | 2 +- 32 files changed, 1366 insertions(+), 61 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-var-templ1.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-var-templ1a.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-var-templ1b.C create mode 100644 gcc/testsuite/gfortran.dg/intent_out_14.f90 create mode 100644 libstdc++-v3/testsuite/20_util/tuple/cons/102270.C