From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2078) id B34FE3858D32; Tue, 18 Oct 2022 04:48:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B34FE3858D32 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1666068518; bh=iwr9dIMY+yXtQ07e2i1U0j84dcmYxRaLB4Lx3KNV5uU=; h=From:To:Subject:Date:From; b=q7A5T6Lp2DX1YkSyATBB6zRhDkwCEbSWMVDYBe6eYYTc1yYwDcmSuEsE4pOJ94xOO sbriTOwk16JJoUoW1fuYKQXWicxKYM8qiqzjIjEGPJFdEROEzdzGU0OnbDU1YB4Nxk ugeQLg19spAJ3GbuosazygkC4z2XNpWv5AKMlQ5E= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: hongtao Liu To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-3351] Move scanning pass of forwprop-19.c to dse1 for r13-3212-gb88adba751da63 X-Act-Checkin: gcc X-Git-Author: Liwei Xu X-Git-Refname: refs/heads/master X-Git-Oldrev: 0205fbb91be022055c632973caa95e398b33db39 X-Git-Newrev: 35106383c0995682f3bef20f745285f791796473 Message-Id: <20221018044838.B34FE3858D32@sourceware.org> Date: Tue, 18 Oct 2022 04:48:38 +0000 (GMT) List-Id: https://gcc.gnu.org/g:35106383c0995682f3bef20f745285f791796473 commit r13-3351-g35106383c0995682f3bef20f745285f791796473 Author: Liwei Xu Date: Mon Oct 17 11:08:55 2022 +0800 Move scanning pass of forwprop-19.c to dse1 for r13-3212-gb88adba751da63 gcc/testsuite/ChangeLog: PR testsuite/107220 * gcc.dg/tree-ssa/forwprop-19.c: Move scanning pass from forwprop1 to dse1, This fixs the test case fail. Diff: --- gcc/testsuite/gcc.dg/tree-ssa/forwprop-19.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/testsuite/gcc.dg/tree-ssa/forwprop-19.c b/gcc/testsuite/gcc.dg/tree-ssa/forwprop-19.c index 4d77138b206..6ca81cb6c49 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/forwprop-19.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/forwprop-19.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-O -fdump-tree-forwprop1" } */ +/* { dg-options "-O -fdump-tree-dse1" } */ typedef int vec __attribute__((vector_size (4 * sizeof (int)))); void f (vec *x1, vec *x2) @@ -11,4 +11,4 @@ void f (vec *x1, vec *x2) *x1 = z; } -/* { dg-final { scan-tree-dump-not "VEC_PERM_EXPR" "forwprop1" } } */ +/* { dg-final { scan-tree-dump-not "VEC_PERM_EXPR" "dse1" } } */