From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2119) id 1884C385C6F5; Mon, 16 Oct 2023 18:38:56 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1884C385C6F5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1697481536; bh=lrlALF26z2jAABlTRF9Vd529Mthff/zVFgM2WpqlGiY=; h=From:To:Subject:Date:From; b=glG1QtlzBcxdLwujenfeyIswd72k4zLrto+MwZlN3ME6z3RIOtfopZ+Ten8Szk+u9 ijblPD+ybKxi3ldNOfLBSfixI//QSMVocA4o/srmjY4y9kPF5yqYRqXUVoTPMV5h43 dM+vSO4b9Y/RgJFch1+Y4jG7oljx+7uleSofDSL4= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Jeff Law To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/vendors/riscv/heads/gcc-13-with-riscv-opts)] RISC-V Regression: Fix FAIL of bb-slp-68.c for RVV X-Act-Checkin: gcc X-Git-Author: Juzhe-Zhong X-Git-Refname: refs/vendors/riscv/heads/gcc-13-with-riscv-opts X-Git-Oldrev: b5227dedac1d0529832c3d551e0c4f61a0c12cc3 X-Git-Newrev: 4b0f502e0df34b23aef259d320ef220bca1a819a Message-Id: <20231016183856.1884C385C6F5@sourceware.org> Date: Mon, 16 Oct 2023 18:38:56 +0000 (GMT) List-Id: https://gcc.gnu.org/g:4b0f502e0df34b23aef259d320ef220bca1a819a commit 4b0f502e0df34b23aef259d320ef220bca1a819a Author: Juzhe-Zhong Date: Fri Oct 13 14:01:26 2023 +0800 RISC-V Regression: Fix FAIL of bb-slp-68.c for RVV Like comment said, this test failed on 64 bytes vector. Both RVV and GCN has 64 bytes vector. So it's more reasonable to use vect512. gcc/testsuite/ChangeLog: * gcc.dg/vect/bb-slp-68.c: Use vect512. (cherry picked from commit 8544efd6d4aea46656c37b0e002503616f09edfc) Diff: --- gcc/testsuite/gcc.dg/vect/bb-slp-68.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/gcc.dg/vect/bb-slp-68.c b/gcc/testsuite/gcc.dg/vect/bb-slp-68.c index e7573a14933e..2dd3d8ee90c6 100644 --- a/gcc/testsuite/gcc.dg/vect/bb-slp-68.c +++ b/gcc/testsuite/gcc.dg/vect/bb-slp-68.c @@ -20,4 +20,4 @@ void foo () /* We want to have the store group split into 4, 2, 4 when using 32byte vectors. Unfortunately it does not work when 64-byte vectors are available. */ -/* { dg-final { scan-tree-dump-not "from scalars" "slp2" { xfail amdgcn-*-* } } } */ +/* { dg-final { scan-tree-dump-not "from scalars" "slp2" { xfail vect512 } } } */