From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2153) id ECD4D3858D38; Wed, 11 Jan 2023 12:08:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org ECD4D3858D38 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1673438932; bh=cHOn8bBQjksYnd1mkwsZunJ/8qa7dDbKYeUxbqOmf0k=; h=From:To:Subject:Date:From; b=xpWvLcTWJAarFK2mwB6EU3d9dRnYTsEJfY6BtCSnwwmAJeNURtxIbTlmYxnnq23K1 kvOFRoIcxA2UbfukfPzaHzQjB8wUIkzBdOiXDxWhRoq1f5zOELBKDqgWfyFwmoqq9z g/bekhuvExDgYmtXhPChrrpX986awLIqU3CadLJo= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jakub Jelinek To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-5105] testsuite: Enable pr108308.c test on all int32 targets [PR108308] X-Act-Checkin: gcc X-Git-Author: Jakub Jelinek X-Git-Refname: refs/heads/master X-Git-Oldrev: 8221efae233e2d5992a79600071dd0a52f1b3c74 X-Git-Newrev: b39c1bea5bae9aee1df25cab1064f983b9ec6941 Message-Id: <20230111120852.ECD4D3858D38@sourceware.org> Date: Wed, 11 Jan 2023 12:08:52 +0000 (GMT) List-Id: https://gcc.gnu.org/g:b39c1bea5bae9aee1df25cab1064f983b9ec6941 commit r13-5105-gb39c1bea5bae9aee1df25cab1064f983b9ec6941 Author: Jakub Jelinek Date: Wed Jan 11 13:06:14 2023 +0100 testsuite: Enable pr108308.c test on all int32 targets [PR108308] This test seems to rely on 32-bit int (and uses a wider constant which shouldn't fit into int), I've initially enabled it on ilp32+lp64 target, but apparently it works on llp64 too, so I've changed it to int32. 2023-01-11 Jakub Jelinek PR target/108308 * gcc.dg/pr108308.c: Use int32 target rather than { ilp32 || lp64 }. Diff: --- gcc/testsuite/gcc.dg/pr108308.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/gcc.dg/pr108308.c b/gcc/testsuite/gcc.dg/pr108308.c index c22762690ac..d5cc37d9f12 100644 --- a/gcc/testsuite/gcc.dg/pr108308.c +++ b/gcc/testsuite/gcc.dg/pr108308.c @@ -1,5 +1,5 @@ /* PR target/108308 */ -/* { dg-do run { target { ilp32 || lp64 } } } */ +/* { dg-do run { target int32 } } */ /* { dg-options "-Os -fno-tree-ccp" } */ int a = 1, *d = &a, f = 2766708631, h;