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-aarch64-stable-defconfig in repository toolchain/ci/gcc.
from 4ed1dc1275b c++: Fix defaulted <=> fallback to < and == [PR96299] adds 570c312c03e c++: Originating and instantiating module adds 5ea350d1d7e libgo: update to 1.15.6 release adds 0221c656bbe c++: ICE with -fsanitize=vptr and constexpr dynamic_cast [PR98103] adds ab3a5ff07cd testsuite: Fix up testcase for ia32 [PR98191] adds f6e8e2797eb Daily bump. adds 4eb28483004 c++: Don't require accessible dtors for some forms of new [ [...] adds 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
No new revisions were added by this update.
Summary of changes: contrib/ChangeLog | 9 + gcc/ChangeLog | 87 + gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 6 + gcc/c-family/c-pragma.c | 1 + gcc/c-family/c-pragma.h | 1 + gcc/c/c-parser.c | 52 + gcc/c/gimple-parser.c | 2 + gcc/config/aarch64/aarch64-protos.h | 41 +- gcc/config/aarch64/aarch64.c | 279 +- gcc/cp/ChangeLog | 106 + gcc/cp/class.c | 3 + gcc/cp/constexpr.c | 11 +- gcc/cp/cvt.c | 3 + gcc/cp/cxx-pretty-print.c | 6 + gcc/cp/decl.c | 157 +- gcc/cp/decl2.c | 6 + gcc/cp/init.c | 2 +- gcc/cp/lex.c | 6 + gcc/cp/module.cc | 52 + gcc/cp/parser.c | 434 +- gcc/cp/parser.h | 3 +- gcc/cp/pt.c | 45 + gcc/cp/rtti.c | 16 +- gcc/cp/semantics.c | 16 +- gcc/cp/typeck.c | 2 +- gcc/fold-const.c | 5 +- gcc/fortran/ChangeLog | 19 + gcc/go/gofrontend/MERGE | 2 +- gcc/testsuite/ChangeLog | 98 + gcc/testsuite/c-c++-common/gomp/allocate-5.c | 41 + gcc/testsuite/g++.dg/cpp0x/new4.C | 36 + gcc/testsuite/g++.dg/cpp2a/bit-cast7.C | 39 + gcc/testsuite/g++.dg/cpp2a/concepts-nodiscard1.C | 2 +- gcc/testsuite/g++.dg/diagnostic/nullptr.C | 8 + gcc/testsuite/g++.dg/pr98213.C | 24 + gcc/testsuite/g++.dg/ubsan/vptr-18.C | 25 + gcc/testsuite/gcc.c-torture/compile/pr98199.c | 7 + gcc/testsuite/gcc.dg/gimplefe-error-8.c | 9 + gcc/testsuite/gcc.dg/torture/pr98191.c | 1 + gcc/testsuite/gcc.dg/tree-ssa/if-to-switch-1.c | 2 +- gcc/testsuite/gcc.dg/tree-ssa/if-to-switch-10.c | 2 +- .../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/tree-ssa-loop-im.c | 20 +- include/hsa.h | 6061 ++++++++++++++++++-- include/hsa_ext_amd.h | 1969 +++++++ include/hsa_ext_image.h | 1440 +++++ libgcc/ChangeLog | 5 + libgo/MERGE | 2 +- libgo/VERSION | 2 +- libgo/go/cmd/go/internal/work/exec.go | 15 + libgo/go/internal/poll/copy_file_range_linux.go | 55 +- libgo/go/runtime/crash_cgo_test.go | 13 + libgo/go/runtime/os_js.go | 2 +- libgo/go/runtime/proc.go | 26 +- libgo/go/runtime/signal_unix.go | 8 +- .../runtime/testdata/testprogcgo/needmdeadlock.go | 95 + libgo/runtime/proc.c | 3 + libgomp/ChangeLog | 4 + libgomp/plugin/plugin-gcn.c | 6 +- libstdc++-v3/ChangeLog | 12 + 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 +- 69 files changed, 10752 insertions(+), 724 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/allocate-5.c create mode 100644 gcc/testsuite/g++.dg/cpp0x/new4.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/g++.dg/ubsan/vptr-18.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 create mode 100644 libgo/go/runtime/testdata/testprogcgo/needmdeadlock.go