From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2119) id 6AFA4385842C; Wed, 7 Jun 2023 14:48:24 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6AFA4385842C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1686149304; bh=0jisVn6D88AxuDd+WiUhtF0kb4mZhJeyfE1fnmtYidM=; h=From:To:Subject:Date:From; b=kqkZ0Yf54m9bBd5SUYakwkf02XBr+95K9WfImnMjelnS+ubI0oJut/oQ4Ql994fIZ tUu6/Lid0aFr1YRFUXHSbv5KGuTSBfHbI+nRWPcc9v9GX1gltt4NeTYQDdePjpbME0 W8QRRATTi3rNFwlezDjGkPLNCIU1WHPGknBTdmBk= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jeff Law To: gcc-cvs@gcc.gnu.org Subject: [gcc r14-1606] Fix expected test output on hppa X-Act-Checkin: gcc X-Git-Author: Jeff Law X-Git-Refname: refs/heads/master X-Git-Oldrev: dd958667821e38b7d6b8efe448044901b4762b3a X-Git-Newrev: c0b88e9e8bbe15f0c2167371b49521b748c6da19 Message-Id: <20230607144824.6AFA4385842C@sourceware.org> Date: Wed, 7 Jun 2023 14:48:24 +0000 (GMT) List-Id: https://gcc.gnu.org/g:c0b88e9e8bbe15f0c2167371b49521b748c6da19 commit r14-1606-gc0b88e9e8bbe15f0c2167371b49521b748c6da19 Author: Jeff Law Date: Wed Jun 7 07:55:32 2023 -0600 Fix expected test output on hppa Recent changes in the hoisting code change the optimized gimple for the shadd-3 testcase on the PA. That in turn changes the number of expected shadd instructions. I'm not entirely sure the test is actually testing what we want anymore since I don't see a CSE for postreload to discover. But I did verify that the number of shadd instructions is sane, so I just changed the count in the obvious way. gcc/testsuite * gcc.target/hppa/shadd-3.c: Update expected output. Diff: --- gcc/testsuite/gcc.target/hppa/shadd-3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/gcc.target/hppa/shadd-3.c b/gcc/testsuite/gcc.target/hppa/shadd-3.c index a0c1f663d56..2d0b648f384 100644 --- a/gcc/testsuite/gcc.target/hppa/shadd-3.c +++ b/gcc/testsuite/gcc.target/hppa/shadd-3.c @@ -10,7 +10,7 @@ over time we'll have to revisit the combine and/or postreload dumps. Note we have disabled delay slot filling to improve test stability. */ -/* { dg-final { scan-assembler-times "sh.add" 3 } } */ +/* { dg-final { scan-assembler-times "sh.add" 4 } } */ extern void oof (void); typedef struct simple_bitmap_def *sbitmap;