From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 2C44F3857C76; Sat, 17 Sep 2022 02:23:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2C44F3857C76 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1663381432; bh=/j3RzwjMUe2so4SI4gVAwckR01pYj4CdJk/glxyMFcs=; h=From:To:Subject:Date:In-Reply-To:References:From; b=qyJsWIr92IvDDW6q56kgWD51ThNZDbndx+pMqHCsco4nCSIh0MmPk/AMIConeaoQr kuZcHLYFRRXSvA0u+iBMM+fLP1aK6v2hsYQkBtkcuJ7Q4xxZDD9YQLArZuVvBA8h0k +TCMCnlp9CfDetKzfOKMYSDO7qtL8l3TLpWrXtJo= From: "bergner at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug d/106832] Missing powerpc64le-linux support for D Date: Sat, 17 Sep 2022 02:23:51 +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: bergner at gcc dot gnu.org X-Bugzilla-Status: NEW 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 #23 from Peter Bergner --- (In reply to Peter Bergner from comment #22) > Looking at expImpl(), it has implementations for all of the float types > except for IBM128. Maybe just need to add support for that??? A few other places as well: libphobos/src/std/math/exponential.d: ... else // static if (F.realFormat =3D=3D RealFormat.ibmExtended) { assert(0, "frexp not implemented"); } ... else // static if (F.realFormat =3D=3D RealFormat.ibmExtended) { assert(0, "ilogb not implemented"); } and... libphobos/src/std/math/operations.d: else // static if (F.realFormat =3D=3D RealFormat.ibmExtended) { assert(0, "nextUp not implemented"); }=