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-arm-bootstrap in repository toolchain/ci/gcc.
from 58340a7cd36 Fortran: Fix c_float128 and c_float128_complex definitions. adds 04ddd108d12 libstdc++: Fix missing descriptions in ChangeLog entries adds 4fa6c0ec350 libstdc++: Define std::is_pointer_interconvertible_base_of [...] adds 61867083127 c++: most vexing parse and braced CTAD [PR89062] adds 7e39d1a15f5 c++: recognize class-scope non-template dguides [PR79501] adds ee8f9ff00d7 c++: Optimize constinit thread_local vars [PR101786] new 9707d2e5dbb c++: parameterized requires-expr as default argument [PR101725]
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 | 3 +- gcc/cp/decl.c | 8 ++ gcc/cp/decl2.c | 6 ++ gcc/cp/parser.c | 85 ++++++++++++++++------ gcc/cp/tree.c | 4 +- gcc/testsuite/g++.dg/DRs/dr2082.C | 12 +++ gcc/testsuite/g++.dg/cpp1z/class-deduction97.C | 6 ++ gcc/testsuite/g++.dg/cpp1z/class-deduction98.C | 10 +++ gcc/testsuite/g++.dg/cpp2a/concepts-uneval4.C | 12 +++ gcc/testsuite/g++.dg/cpp2a/constinit16.C | 21 ++++++ libstdc++-v3/ChangeLog | 2 + libstdc++-v3/include/std/type_traits | 27 +++++++ libstdc++-v3/include/std/version | 4 + .../20_util/is_pointer_interconvertible/value.cc | 51 +++++++++++++ .../20_util/is_pointer_interconvertible/version.cc | 10 +++ .../testsuite/23_containers/span/layout_compat.cc | 2 +- 16 files changed, 236 insertions(+), 27 deletions(-) create mode 100644 gcc/testsuite/g++.dg/DRs/dr2082.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/class-deduction97.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/class-deduction98.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-uneval4.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/constinit16.C create mode 100644 libstdc++-v3/testsuite/20_util/is_pointer_interconvertible/value.cc create mode 100644 libstdc++-v3/testsuite/20_util/is_pointer_interconvertible/version.cc