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-lts-allnoconfig in repository toolchain/ci/gcc.
from ab231af9ccd testsuite/98244 - amend gcc.dg/vect/vect-live-6.c adds 695b8d281ad arm: [testsuite] fix lob tests for -mfloat-abi=hard adds 33314b11ca2 arm: Improve documentation for effective target 'arm_softfloat' adds 958d42abdf1 c++: missing SFINAE with pointer subtraction [PR78173] adds 37b242a3fbd c++: name lookup API for modules adds 97b56dece74 c++: Module lang hook overriding adds 078c7498908 x86: Update user interrupt handler stack frame adds f7ad4446274 arc: Use separate predicated patterns for mpyd(u) adds 75de6a2895f arm: Auto-vectorization for MVE: vorr adds 059da609fa8 c++: cp_tree_equal tweaks adds 1c6b86b50d4 c++: module test harness adds dfbe642c97f arc: Refurbish adc/sbc patterns adds a412be00c49 arc: Avoid generating brcc instructions with limm adds 78e9cfe1e29 arc: Update ARC700 cache hazard detection. adds e36ce56e81b arm: Auto-vectorization for MVE clean condition for vand an [...] new ab264f4b39c compiler: encode user visible names if necessary
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: gcc/config/arc/arc-protos.h | 3 - gcc/config/arc/arc.c | 106 ++----- gcc/config/arc/arc.md | 196 +++++------- gcc/config/arm/iterators.md | 12 +- 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 | 10 +- gcc/config/i386/uintrintrin.h | 3 - gcc/cp/cp-lang.c | 6 + gcc/cp/cp-objcp-common.c | 15 + gcc/cp/cp-objcp-common.h | 4 +- gcc/cp/cp-tree.h | 5 + gcc/cp/module.cc | 30 ++ gcc/cp/name-lookup.c | 411 +++++++++++++++++++++++++- gcc/cp/name-lookup.h | 27 ++ gcc/cp/tree.c | 22 +- gcc/cp/typeck.c | 2 +- gcc/doc/sourcebuild.texi | 3 +- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/gogo.h | 17 +- gcc/go/gofrontend/names.cc | 136 ++++++--- gcc/go/gofrontend/types.cc | 4 +- gcc/go/gofrontend/types.h | 44 +-- gcc/testsuite/g++.dg/cpp2a/concepts-pr78173.C | 9 + gcc/testsuite/g++.dg/modules/modules.exp | 376 +++++++++++++++++++++++ gcc/testsuite/gcc.dg/guality/pr98219-1.c | 49 +++ gcc/testsuite/gcc.dg/guality/pr98219-2.c | 63 ++++ gcc/testsuite/gcc.dg/torture/pr98219-1.c | 45 +++ gcc/testsuite/gcc.dg/torture/pr98219-2.c | 59 ++++ gcc/testsuite/gcc.target/arc/pmpyd.c | 15 + gcc/testsuite/gcc.target/arc/tmac-1.c | 2 +- gcc/testsuite/gcc.target/arm/lob2.c | 2 +- gcc/testsuite/gcc.target/arm/lob3.c | 2 +- gcc/testsuite/gcc.target/arm/lob4.c | 2 +- gcc/testsuite/gcc.target/arm/lob5.c | 2 +- gcc/testsuite/gcc.target/arm/simd/mve-vorr.c | 64 ++++ gcc/testsuite/gcc.target/i386/uintr-2.c | 7 +- gcc/testsuite/gcc.target/i386/uintr-3.c | 6 +- gcc/testsuite/gcc.target/i386/uintr-4.c | 6 +- gcc/testsuite/gcc.target/i386/uintr-5.c | 4 +- gcc/testsuite/lib/target-supports.exp | 4 +- 43 files changed, 1502 insertions(+), 310 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-pr78173.C create mode 100644 gcc/testsuite/g++.dg/modules/modules.exp create mode 100644 gcc/testsuite/gcc.dg/guality/pr98219-1.c create mode 100644 gcc/testsuite/gcc.dg/guality/pr98219-2.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr98219-1.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr98219-2.c create mode 100644 gcc/testsuite/gcc.target/arc/pmpyd.c create mode 100644 gcc/testsuite/gcc.target/arm/simd/mve-vorr.c