This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-aarch64-build_cross 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 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 adds 8d63e3c229f RISC-V: Explicitly call python when using multilib generator adds 154e9b831b6 Allow scalar fallback for pattern root stmt adds a2a17ae7d85 openmp: Fix ICE with broken doacross loop [PR98205] adds 66dea8899df dojump: Optimize a == a or a != a [PR98169] adds 680e4202f23 dojump: Improve float != comparisons on x86 [PR98212] adds f2a5e5f3e6d drop __builtin_ from __clear_cache libname adds 76c09f2af9d tree-optimization/98211 - fix bogus vectorization of conversion adds 703d2ac06fb Add WIDEN_PLUS, WIDEN_MINUS pretty print adds f5b902a9af9 [VECT] pr97929 fix adds 4cf70c20cb1 data-ref: Rework integer handling in split_constant_offset [...] adds 11a0beff64f arm: Auto-vectorization for MVE: vand adds a1fb16e5472 remove obsolete conversion handling from vectorizable_assignment adds 2e6562043c4 Remove misleading debug line entries adds 79c1b9fb44c c++: name-lookup cleanups adds 8c60696b699 c++: Module-specific error and tree dumping adds 237a8e8d564 Small fix to PLACEHOLDER_EXPR handling in loc_list_from_tree_1 adds 36d0108adfd c++: name-lookup refactoring adds e271cd0234d c++: Add fixed test [PR68451] adds b46dd03fe94 arm: Fix typo in testcase mve-vsub_1.c adds afc14c8d0a9 c++: modularize spelling suggestions new c0979d8f22a c++: Name lookup for modules
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: contrib/ChangeLog | 9 + gcc/ChangeLog | 158 + gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 11 + 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/cfgexpand.c | 9 +- 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/arm/iterators.md | 11 +- gcc/config/arm/mve.md | 30 +- gcc/config/arm/neon.md | 2 +- gcc/config/arm/predicates.md | 2 +- gcc/config/arm/unspecs.md | 3 - gcc/config/arm/vec-common.md | 8 + gcc/config/i386/i386.h | 16 - gcc/config/riscv/multilib-generator | 3 +- gcc/cp/ChangeLog | 181 + gcc/cp/class.c | 3 + gcc/cp/constexpr.c | 11 +- gcc/cp/cp-tree.h | 2 +- gcc/cp/cvt.c | 3 + gcc/cp/cxx-pretty-print.c | 6 + gcc/cp/decl.c | 157 +- gcc/cp/decl2.c | 6 + gcc/cp/error.c | 39 + gcc/cp/init.c | 2 +- gcc/cp/lex.c | 6 + gcc/cp/module.cc | 91 + gcc/cp/name-lookup.c | 1347 ++++- gcc/cp/name-lookup.h | 5 +- gcc/cp/parser.c | 434 +- gcc/cp/parser.h | 3 +- gcc/cp/pt.c | 45 + gcc/cp/ptree.c | 36 + gcc/cp/rtti.c | 16 +- gcc/cp/semantics.c | 16 +- gcc/cp/typeck.c | 2 +- gcc/doc/invoke.texi | 9 +- gcc/dojump.c | 25 +- gcc/dwarf2out.c | 7 +- gcc/fold-const.c | 5 +- gcc/fortran/ChangeLog | 19 + gcc/go/gofrontend/MERGE | 2 +- gcc/godump.c | 53 +- gcc/omp-expand.c | 19 +- gcc/testsuite/ChangeLog | 161 + gcc/testsuite/c-c++-common/gomp/allocate-5.c | 41 + gcc/testsuite/c-c++-common/gomp/doacross-4.c | 30 + gcc/testsuite/g++.dg/cpp0x/friend6.C | 23 + 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/pr98211.c | 51 + 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 +- gcc/testsuite/gcc.dg/vect/bb-slp-div-1.c | 5 +- gcc/testsuite/gcc.dg/vect/pr97929.c | 10 + gcc/testsuite/gcc.dg/vect/pr98069.c | 22 + gcc/testsuite/gcc.misc-tests/godump-1.c | 3 + gcc/testsuite/gcc.target/arm/simd/mve-vand.c | 63 + gcc/testsuite/gcc.target/arm/simd/mve-vsub_1.c | 1 - gcc/testsuite/gcc.target/i386/pr98169.c | 29 + gcc/testsuite/gcc.target/i386/pr98212.c | 21 + .../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-data-ref.c | 427 +- gcc/tree-inline.c | 14 +- gcc/tree-pretty-print.c | 12 + gcc/tree-ssa-live.c | 34 +- gcc/tree-ssa-loop-im.c | 20 +- gcc/tree-ssa-phiopt.c | 10 +- gcc/tree-vect-data-refs.c | 2 + gcc/tree-vect-slp.c | 15 +- gcc/tree-vect-stmts.c | 18 +- gcc/tree.c | 2 +- include/ChangeLog | 6 + 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 | 9 + libgomp/plugin/plugin-gcn.c | 6 +- libstdc++-v3/ChangeLog | 25 + 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 +- 114 files changed, 13091 insertions(+), 1169 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/allocate-5.c create mode 100644 gcc/testsuite/c-c++-common/gomp/doacross-4.c create mode 100644 gcc/testsuite/g++.dg/cpp0x/friend6.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 gcc/testsuite/gcc.dg/pr98211.c create mode 100644 gcc/testsuite/gcc.dg/vect/pr97929.c create mode 100644 gcc/testsuite/gcc.dg/vect/pr98069.c create mode 100644 gcc/testsuite/gcc.target/arm/simd/mve-vand.c create mode 100644 gcc/testsuite/gcc.target/i386/pr98169.c create mode 100644 gcc/testsuite/gcc.target/i386/pr98212.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