From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id 6E7133856975; Thu, 1 Dec 2022 07:40:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6E7133856975 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1669880413; bh=lFo2ZIMk2TPyBbfP7h6MEKRHOMMvn6t6YHt62oI9RxU=; h=From:To:Subject:Date:From; b=CxgaY7RbDrtzmfc1JUhEIkoXaKpQODCl5d/r+T/UhPLa8bEf1JyXX2x2hOVBazpaM 1M9W04qtkx2gnMP2UqCsIpEYQlxYlPywoySh9dinu9hE4y8ACncyRo4yyKlkbbXTIA GFiyYmJoTNTGeBgiUck3fXUztZ/DsdDPIxTFkuQM= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Alexandre Oliva To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/aoliva/heads/testme)] [arm] xfail fp-uint64-convert-double tests X-Act-Checkin: gcc X-Git-Author: Alexandre Oliva X-Git-Refname: refs/users/aoliva/heads/testme X-Git-Oldrev: cec475ae63c3659241dbd5c474990b5103148f86 X-Git-Newrev: e95ac2c3c3db989a00d58aebb0568468be46bafa Message-Id: <20221201074013.6E7133856975@sourceware.org> Date: Thu, 1 Dec 2022 07:40:13 +0000 (GMT) List-Id: https://gcc.gnu.org/g:e95ac2c3c3db989a00d58aebb0568468be46bafa commit e95ac2c3c3db989a00d58aebb0568468be46bafa Author: Alexandre Oliva Date: Thu Dec 1 04:38:49 2022 -0300 [arm] xfail fp-uint64-convert-double tests The FP emulation on ARM doesn't take rounding modes into account. The tests require hard_float, but that only tests for calls when adding doubles. There are arm targets that support hardware adds, but that emulate conversions. for gcc/testsuite/ChangeLog * gcc.dg/torture/fp-uint64-convert-double-1.c: Expect fail on arm-*-eabi*. * gcc.dg/torture/fp-uint64-convert-double-2.c: Likewise. Change-Id: I9c559a7c4d4227165a8b3d18e9f8fc88af1e4134 TN: VB12-013 Diff: --- gcc/testsuite/gcc.dg/torture/fp-uint64-convert-double-1.c | 2 +- gcc/testsuite/gcc.dg/torture/fp-uint64-convert-double-2.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/testsuite/gcc.dg/torture/fp-uint64-convert-double-1.c b/gcc/testsuite/gcc.dg/torture/fp-uint64-convert-double-1.c index 0c7bf003e93..61cfa963746 100644 --- a/gcc/testsuite/gcc.dg/torture/fp-uint64-convert-double-1.c +++ b/gcc/testsuite/gcc.dg/torture/fp-uint64-convert-double-1.c @@ -1,5 +1,5 @@ /* PR84407 */ -/* { dg-do run } */ +/* { dg-do run { xfail { arm-*-eabi* } } } */ /* { dg-require-effective-target fenv } */ /* { dg-require-effective-target hard_float } */ /* { dg-additional-options "-frounding-math -fexcess-precision=standard" } */ diff --git a/gcc/testsuite/gcc.dg/torture/fp-uint64-convert-double-2.c b/gcc/testsuite/gcc.dg/torture/fp-uint64-convert-double-2.c index ac24b351a46..b32b28a3295 100644 --- a/gcc/testsuite/gcc.dg/torture/fp-uint64-convert-double-2.c +++ b/gcc/testsuite/gcc.dg/torture/fp-uint64-convert-double-2.c @@ -1,5 +1,5 @@ /* PR84407 */ -/* { dg-do run } */ +/* { dg-do run { xfail { arm-*-eabi* } } } */ /* { dg-require-effective-target fenv } */ /* { dg-require-effective-target hard_float } */ /* { dg-additional-options "-frounding-math" } */