From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 7F3623858D37; Thu, 29 Sep 2022 02:31:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7F3623858D37 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1664418717; bh=yR5SqUs3Dmzv2xbeCMgaK2gIRlSj0eIg+UmWIYssuSs=; h=From:To:Subject:Date:In-Reply-To:References:From; b=rg0ejCoi0OndkIoaQYZr9obsk6o8S28UmjDpIgjWTWcQqK+IfRvn5/kdH4wpiVoL9 90oStFuGLoOBu2yr8kUBjarh8qWqws5QrR1Fu5ztnJqfJSvLmKraDaDWvyCBlbDjwU PUPfeAUnL5wXobSsXqgjU/bam+170o4EoMsx0yzc= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/107080] ICE in verify_symtab_nodes using _Float64x with long double Date: Thu, 29 Sep 2022 02:31:57 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: ABI, assemble-failure, ice-checking, ice-on-valid-code X-Bugzilla-Severity: normal 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: cf_reconfirmed_on everconfirmed bug_status 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=3D107080 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed| |2022-09-29 Ever confirmed|0 |1 Status|UNCONFIRMED |NEW --- Comment #1 from Andrew Pinski --- Here is a reduced testcase: ``` template=20 int f (T x, T1 y) throw () { return 3; } int main () { return (f (0.0f64x, 0.0f64x) + f (0.0f64x, 0.0L)) !=3D 6; } ``` This ICEs and with release checking it produces an assembler error: ``` /tmp/ccJDRaEi.s: Assembler messages: /tmp/ccJDRaEi.s:93: Error: symbol `_Z1fIeeEiT_T0_' is already defined ``` I can only assume the issue is _Float64x is not treated the same as long do= uble for type comparison but is treated the same for mangling (which is why I ma= rked it as an ABI issue).=