From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 0EB903858C50; Fri, 2 Dec 2022 11:16:08 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0EB903858C50 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1669979769; bh=4K66gQyTozsbuOXbaaYxuHrt78ww3yvYD9BlqlYBW3E=; h=From:To:Subject:Date:In-Reply-To:References:From; b=O9Wf4u25uGFfhNRHMp1bZzqww9jiaxKiYoI+EF3O7bpzJmOxmgcWdRgdigX+BC1U9 dtEIVsnFF6/RFXmufb8lHtju9qrC57QW/kKXDlN0vLT055HldiB8twvluGGy/gDyls VWshpuplgBBm9TSPs428pwTq3XXMMXRReKWDY/e4= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/107046] [13 Regression] Recent FP range work causing inf-2 to be miscompiled on rx-elf Date: Fri, 02 Dec 2022 11:16:07 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: testsuite-fail X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D107046 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org --- Comment #6 from Jakub Jelinek --- (In reply to Jeffrey A. Law from comment #5) > Given the magic hackery going on inside the RX target files, I wonder if = we > should skip the entire ieee suite for rx. Doesn't add_options_for_ieee already handle RX though? if { [istarget rx-*-*] } { return "$flags -mnofpu" } ieee.exp repeats some of the add_options_for_ieee stuff and more though, so shouldn't we --- gcc/testsuite/gcc.c-torture/execute/ieee/ieee.exp.jj 2022-01-11 23:11:22.969282018 +0100 +++ gcc/testsuite/gcc.c-torture/execute/ieee/ieee.exp 2022-12-02 12:15:22.307173074 +0100 @@ -52,6 +52,9 @@ if { [istarget "alpha*-*-*"] || [istarget "sh*-*-*"] } then { lappend additional_flags "-mieee" } +if [istarget rx-*-*] then { + lappend additional_flags "-mnofpu" +} if { ![check_effective_target_signal] } { lappend additional_flags "-DSIGNAL_SUPPRESS" ?=