From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id AA394385703E; Wed, 19 Oct 2022 16:42:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AA394385703E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1666197772; bh=gBT+HFXZkKXNlp2uDJvx6WXALiTdgl3fh6XeSULuOf4=; h=From:To:Subject:Date:In-Reply-To:References:From; b=yE0YBthKirvuK4Dznm9knbUFDLysye+qlTP82aXTn/5Cm5DsXQxUkPbakbqEOlut9 TB+F4QRBxMdjUzXIjVxr74Nvy6iZVzKuymL3ALDissTkZ5u5moZOC2I1vQvRZ9mGFR rL2gR15LLUXZUOFIxD5hNxWTQwy72ept2FGPY0g8= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/107315] support 128bit long double on aarch64 darwin Date: Wed, 19 Oct 2022 16:42:52 +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: 12.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc cf_reconfirmed_on bug_status everconfirmed 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=3D107315 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|The "long double float" is |support 128bit long double |only 64 bit on Apple |on aarch64 darwin |Silicon MacBook | Last reconfirmed| |2022-10-19 Status|UNCONFIRMED |NEW Ever confirmed|0 |1 --- Comment #1 from Andrew Pinski --- The ABI says long double is the same as double. https://developer.apple.com/documentation/xcode/writing-arm64-code-for-appl= e-platforms : ``` The long double type is a double precision IEEE754 binary floating-point ty= pe, which makes it identical to the double type. This behavior contrasts to the standard specification, in which a long double is a quad-precision, IEEE754 binary, floating-point type. ``` We could use libquadmath to add support for 128bit long double but it will = take someone to implement that.=