This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-next-allyesconfig in repository toolchain/ci/gcc.
from c3a63fb3854 c++: Avoid [[nodiscard]] warning in requires-expr [PR98019] adds 4164e58bfd5 fold-const: Fix up native_encode_initializer missing field [...] adds 0673fc69117 fold-const: Fix native_encode_initializer bitfield handling [...] adds 1cb2d1d5ce1 gfortran.dg/gomp/reduction4.f90: Fix testcase adds 42bdf814493 c/98200 - improve error recovery for GIMPLE FE adds 85f0a4d9822 Import HSA header files from AMD adds aa0432005f3 OpenMP: C/C++ parse 'omp allocate' adds 72217b5ddb2 IBM Z: Build autovec-*-signaling-eq.c tests with exceptions adds cf97b970fe5 c++: Decl module-specific semantic processing adds 76e4f444a6e aarch64: Add CPU-specific SVE vector costs struct adds 33d2f41785b testsuite: fix 2 tests on aarch64 adds fe70679b80f c++: Fix printing of decltype(nullptr) [PR97517] adds 0b37233152b c++: Module parsing adds 84d08255f9f tree-optimization/98213 - cache PHI walking result in SM adds 0aa1786d34b libstdc++: Fix build failure for target with no way to sleep adds 4c61e35f20f i386: Remove REG_ALLOC_ORDER definition adds ef33047a8b9 aarch64: Add +pauth to -march adds 7d9767cb8ee phiopt: Fix up two_value_replacement BOOLEAN_TYPE handling [...] adds 0c2200e4198 go-test.exp: rewrite errchk regexp quoting adds ca2bd949492 Daily bump. adds 2fe4f000ad1 go-test.exp: recognize errorcheckdir -n adds 73cf5da233b -fdump-go-spec: ignore type ordering of incomplete types
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 71 + gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 5 + gcc/c-family/c-pragma.c | 1 + gcc/c-family/c-pragma.h | 1 + gcc/c/ChangeLog | 11 + gcc/c/c-parser.c | 52 + gcc/c/gimple-parser.c | 2 + gcc/config/aarch64/aarch64-option-extensions.def | 3 + gcc/config/aarch64/aarch64-protos.h | 41 +- gcc/config/aarch64/aarch64.c | 279 +- gcc/config/aarch64/aarch64.h | 9 +- gcc/config/aarch64/aarch64.md | 2 +- gcc/config/i386/i386.h | 16 - gcc/cp/ChangeLog | 75 + gcc/cp/cxx-pretty-print.c | 6 + gcc/cp/decl.c | 149 +- gcc/cp/decl2.c | 6 + gcc/cp/lex.c | 6 + gcc/cp/module.cc | 42 + gcc/cp/parser.c | 434 +- gcc/cp/parser.h | 3 +- gcc/cp/rtti.c | 16 +- gcc/cp/semantics.c | 16 +- gcc/doc/invoke.texi | 9 +- gcc/fold-const.c | 5 +- gcc/godump.c | 53 +- gcc/testsuite/ChangeLog | 63 + gcc/testsuite/c-c++-common/gomp/allocate-5.c | 41 + gcc/testsuite/g++.dg/cpp2a/bit-cast7.C | 39 + gcc/testsuite/g++.dg/diagnostic/nullptr.C | 8 + gcc/testsuite/g++.dg/pr98213.C | 24 + gcc/testsuite/gcc.c-torture/compile/pr98199.c | 7 + gcc/testsuite/gcc.dg/gimplefe-error-8.c | 9 + gcc/testsuite/gcc.dg/tree-ssa/if-to-switch-1.c | 2 +- gcc/testsuite/gcc.dg/tree-ssa/if-to-switch-10.c | 2 +- gcc/testsuite/gcc.misc-tests/godump-1.c | 3 + .../s390/zvector/autovec-double-signaling-eq.c | 2 +- .../s390/zvector/autovec-float-signaling-eq.c | 2 +- gcc/testsuite/gfortran.dg/gomp/reduction4.f90 | 23 +- gcc/testsuite/gfortran.dg/gomp/reduction5.f90 | 14 + gcc/testsuite/go.test/go-test.exp | 64 +- gcc/tree-ssa-loop-im.c | 20 +- gcc/tree-ssa-phiopt.c | 10 +- include/ChangeLog | 6 + include/hsa.h | 6061 ++++++++++++++++++-- include/hsa_ext_amd.h | 1969 +++++++ include/hsa_ext_image.h | 1440 +++++ libgomp/ChangeLog | 5 + libgomp/plugin/plugin-gcn.c | 6 +- libstdc++-v3/ChangeLog | 13 + libstdc++-v3/acinclude.m4 | 6 + libstdc++-v3/config.h.in | 3 + libstdc++-v3/configure | 8 + libstdc++-v3/include/std/thread | 7 +- libstdc++-v3/src/c++11/thread.cc | 5 +- 56 files changed, 10374 insertions(+), 803 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/allocate-5.c create mode 100644 gcc/testsuite/g++.dg/cpp2a/bit-cast7.C create mode 100644 gcc/testsuite/g++.dg/diagnostic/nullptr.C create mode 100644 gcc/testsuite/g++.dg/pr98213.C create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr98199.c create mode 100644 gcc/testsuite/gcc.dg/gimplefe-error-8.c create mode 100644 include/hsa_ext_amd.h create mode 100644 include/hsa_ext_image.h