From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 8BDDC385842B; Fri, 24 Feb 2023 06:24:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8BDDC385842B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1677219890; bh=kurJVaXpcM71nl5RLEXVCTrA8olP/fD+MsSzDnxFq5s=; h=From:To:Subject:Date:In-Reply-To:References:From; b=QrlxK8Cks29fBnjSEC7ll0n8eq98LOJeIczB6/6yTwHOcJsqCOC0+74gKKvmGiVzg q1xPaSPcCK/ay0w9NQf8r2+E1+Ovl4uuDCp8vY3uU50VxZ5g3VafdL+uLqUX7lvGkU pTO22hhPWx1jlFucE8X8/IMT+76lmiuLTbJTeMxY= From: "linkw at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/108730] gcc.target/powerpc/bfp/scalar-test-neg-8.c fails on power 9 BE Date: Fri, 24 Feb 2023 06:24:50 +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: X-Bugzilla-Severity: normal X-Bugzilla-Who: linkw at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: linkw at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: everconfirmed cc assigned_to cf_reconfirmed_on component bug_status 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=3D108730 Kewen Lin changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 CC| |linkw at gcc dot gnu.org Assignee|unassigned at gcc dot gnu.org |linkw at gcc dot gn= u.org Last reconfirmed| |2023-02-24 Component|target |testsuite Status|UNCONFIRMED |ASSIGNED --- Comment #1 from Kewen Lin --- The bif builtin_vsx_scalar_test_neg_qp is guarded with ieee128-hw, which requires -m64, so the test case needs lp64 effective target. if (TARGET_FLOAT128_HW && !TARGET_64BIT) { if ((rs6000_isa_flags_explicit & OPTION_MASK_FLOAT128_HW) !=3D 0) error ("%qs requires %qs", "%<-mfloat128-hardware%>", "-m64"); rs6000_isa_flags &=3D ~OPTION_MASK_FLOAT128_HW; }=