From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 5DB7E3857415; Wed, 14 Sep 2022 20:38:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5DB7E3857415 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1663187930; bh=qCpsq2x9jyg6QMW0dFEyNxsizLAVW+ZPmbegTU6/CWk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=EOtbtStxnbxJX+GBfxZtIUXuS3Fhym6L3a2iCyBMsc0rGGcMBlIeZgzbaSkOdG3Ji GJN3ZgHzMAS1f65Coxh9OzZANYsJwhVg/GWM5dBEQUQT2OCtgR9ZMVv7Q5ynv+RJKd sxI0gAKgkv0eJH/cIortkvrat0pHqr2QewuHw3iw= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug d/106832] Missing powerpc64le-linux support for D Date: Wed, 14 Sep 2022 20:38:50 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: d X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: 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: ibuclaw at gdcproject dot 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=3D106832 --- Comment #4 from Jakub Jelinek --- I think the IEEE quad support isn't 100%, I see a couple of spots with: static if (real.mant_dig > 64) { pragma(msg, "printFloat tests disabled because of unsupported `real` format"); } where real.mant_dig =3D=3D 64 is the Intel extended format (and 53 is double precision). IEEE quad is 113 though.=