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 675a3e40567 Add transitive operations to the relation oracle. adds fce8a52d0ae rs6000: Add power7 and power7-64 builtins adds 8ce18a29ef7 rs6000: Add power8-vector builtins adds 037ef219b27 libstdc++: Add std::is_layout_compatible trait for C++20 adds 6d692ef43b2 libstdc++: Update C++20 status table for layout-compatibili [...] adds 820f0940d7a Reset PHI base0 flag if it's clear in any argument [PR101977, ...] adds 3c496e92d79 nvptx: Add a __PTX_SM__ predefined macro based on target ISA. new 2ed356a4c9a rs6000: Add Power9 builtins new 19b7bf620cd rs6000: Add more type nodes to support builtin processing new 50cb8300d3b rs6000: Add Power10 builtins new f95946afd16 Fortran: fix pointless warning for static variables
The 4 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/config.gcc | 2 + gcc/config/nvptx/nvptx-c.c | 47 + gcc/config/nvptx/nvptx-protos.h | 1 + gcc/config/nvptx/nvptx.h | 12 +- gcc/config/nvptx/t-nvptx | 4 + gcc/config/rs6000/rs6000-builtin-new.def | 1368 ++++++++++++++++++++ gcc/config/rs6000/rs6000-call.c | 148 ++- gcc/config/rs6000/rs6000.h | 82 ++ gcc/fortran/trans-decl.c | 20 +- gcc/gimple-ssa-warn-access.cc | 20 +- gcc/pointer-query.cc | 105 +- gcc/testsuite/g++.dg/pr100574.C | 4 + gcc/testsuite/g++.dg/warn/Warray-bounds-26.C | 27 + gcc/testsuite/gcc.dg/Warray-bounds-88.c | 134 ++ gcc/testsuite/gcc.dg/Wstringop-overread.c | 32 +- gcc/testsuite/gcc.dg/pr20126.c | 6 + gcc/testsuite/gcc.dg/warn-strnlen-no-nul.c | 39 +- gcc/testsuite/gfortran.dg/pr98411.f90 | 4 +- libstdc++-v3/doc/html/manual/status.html | 4 +- libstdc++-v3/doc/xml/manual/status_cxx2020.xml | 3 +- libstdc++-v3/include/std/type_traits | 25 + libstdc++-v3/include/std/version | 4 + .../is_corresponding_member.cc | 19 + .../20_util/is_layout_compatible/value.cc | 56 + .../20_util/is_layout_compatible/version.cc | 10 + .../is_pointer_interconvertible/with_class.cc | 29 + .../testsuite/23_containers/span/layout_compat.cc | 19 +- 27 files changed, 2109 insertions(+), 115 deletions(-) create mode 100644 gcc/config/nvptx/nvptx-c.c create mode 100644 gcc/testsuite/g++.dg/warn/Warray-bounds-26.C create mode 100644 gcc/testsuite/gcc.dg/Warray-bounds-88.c create mode 100644 libstdc++-v3/testsuite/20_util/is_layout_compatible/is_correspo [...] create mode 100644 libstdc++-v3/testsuite/20_util/is_layout_compatible/value.cc create mode 100644 libstdc++-v3/testsuite/20_util/is_layout_compatible/version.cc create mode 100644 libstdc++-v3/testsuite/20_util/is_pointer_interconvertible/with [...]