From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 795483857B93; Wed, 31 May 2023 19:57:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 795483857B93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1685563077; bh=iIzeDRvyHGZFY256fMLZrzOQANYX4KMHkSY0AsVJMEA=; h=From:To:Subject:Date:In-Reply-To:References:From; b=yU7mEhiEE4Ex4EDIxp9dG8jVC0W295/Wp5n5YZggjxOz00HORZm4DW4Y3cvwd1R0c ORy6OLuNbJFNi/fSV2ApBNc+NV5QjfFm3U7wQoqAFfvZvxy7/yHthPtV7p++xqdAYb l4esgLK7i3RLrA0dvA1UQoAdvIe7qfLZkmbXf/Us= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: =?UTF-8?B?W0J1ZyBsaWJzdGRjKysvMTA5OTIxXSBjKysxNy9mbG9hdGluZ19m?= =?UTF-8?B?cm9tX2NoYXJzLmNjOiBjb21waWxlIGVycm9yOiDigJhmcm9tX2NoYXJzX3N0?= =?UTF-8?B?cnRvZOKAmSB3YXMgbm90IGRlY2xhcmVkIGluIHRoaXMgc2NvcGU=?= Date: Wed, 31 May 2023 19:57:57 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 13.1.0 X-Bugzilla-Keywords: build 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: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.2 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=3D109921 --- Comment #5 from CVS Commits --- The master branch has been updated by Jonathan Wakely : https://gcc.gnu.org/g:a239a35075ffd8b34f1db72c22998a625ff962b5 commit r14-1451-ga239a35075ffd8b34f1db72c22998a625ff962b5 Author: Jonathan Wakely Date: Wed May 31 18:01:13 2023 +0100 libstdc++: Fix build for targets without _Float128 [PR109921] My r14-1431-g7037e7b6e4ac41 change caused the _Float128 overload to be compiled unconditionally, by moving the USE_STRTOF128_FOR_FROM_CHARS check into the function body. That function should still only be compiled if the target actually supports _Float128. libstdc++-v3/ChangeLog: PR libstdc++/109921 * src/c++17/floating_from_chars.cc: Check __FLT128_MANT_DIG__ is defined before trying to use _Float128.=