From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id B5CBA3858433; Fri, 21 Apr 2023 08:44:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B5CBA3858433 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1682066697; bh=s7TAGd86jZkc/15g/+I2FdtqjwrrRnj4w8uWHgQnR9I=; h=From:To:Subject:Date:In-Reply-To:References:From; b=gT8/5PVhK2lL4i4Fo3XBygg0H8Yju9PKnocwbeppBzL+tpMGdkYaoMC4Yh4AY82Bn jEbBLH3BOA/4rM/cqMnNSvPVpuRweYKj5Y/Mfe8Xqa51HPlbFS1/aOjnGc7IT9CBi5 t2YnQsMVyLSMJa9epYIuKvtg7nd4tFSmVIxz1/LA= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/108728] gcc.dg/torture/float128-cmp-invalid.c fails on power 9 BE Date: Fri, 21 Apr 2023 08:44:57 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: guihaoc at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: 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=3D108728 --- Comment #3 from CVS Commits --- The master branch has been updated by HaoChen Gui : https://gcc.gnu.org/g:6afa7d31a0e8865e17b317ada5cc5014b5d07da3 commit r14-133-g6afa7d31a0e8865e17b317ada5cc5014b5d07da3 Author: Haochen Gui Date: Fri Apr 21 16:42:31 2023 +0800 rs6000: xfail float128 comparison test case that fails on powerpc64. This patch xfails a float128 comparison test case on powerpc64 that fails due to a longstanding issue with floating-point compares. See PR58684 for more information. When float128 hardware is enabled (-mfloat128-hardware), xscmpuqp is generated for comparison which is unexpected. When float128 software emulation is enabled (-mno-float128-hardware), we still have to xfail the hardware version (__lekf2_hw) which finally generates xscmpuqp. gcc/testsuite/ PR target/108728 * gcc.dg/torture/float128-cmp-invalid.c: Add xfail.=