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 cecdff844ac Small tweak to expand_used_vars adds e8426554e13 Adjust volatile handling of the operand scanner adds 2cb02e065ff target/101788 - avoid decomposing hard-register "loads" adds cba64d855df Fix gcc.dg/lto/pr48622_0.c testcase adds 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 [...] new 61867083127 c++: most vexing parse and braced CTAD [PR89062] new 7e39d1a15f5 c++: recognize class-scope non-template dguides [PR79501] new ee8f9ff00d7 c++: Optimize constinit thread_local vars [PR101786]
The 3 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/decl2.c | 6 ++ gcc/cp/parser.c | 80 +++++++++++++++------- gcc/fortran/iso-c-binding.def | 15 ++-- gcc/fortran/trans-common.c | 9 +-- gcc/fortran/trans-types.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/constinit16.C | 21 ++++++ gcc/testsuite/gcc.dg/lto/pr48622_1.c | 6 ++ gcc/tree-ssa-forwprop.c | 3 +- gcc/tree-ssa-operands.c | 7 +- 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 +- 17 files changed, 230 insertions(+), 41 deletions(-) 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/constinit16.C create mode 100644 gcc/testsuite/gcc.dg/lto/pr48622_1.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