From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id CCB383884CA6; Wed, 14 Dec 2022 17:46:29 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CCB383884CA6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1671039989; bh=6R/ykyBL5Fmy02rh8QVhLNDI91WVzgMKqweBtKmZ1WA=; h=From:To:Subject:Date:In-Reply-To:References:From; b=ni37ob6RtAKwXfd4oe2NZptWHeT7V2a9xkiRz4lfPWLs6Tusl9lzxui/R3MXknYVf Xt+14Np6hUMnFEHkoHwaBVNUR3deK64m8zjqOvkhzlazKJz5g6m0rt0iB1SvJgBxbL TDKM3xJkG6S0zwapbJo2hswF9/JSW7dVklhlY5OE= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/108099] ICE with type alias with `signed __int_128_t` Date: Wed, 14 Dec 2022 17:46:29 +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: 12.2.0 X-Bugzilla-Keywords: ice-on-invalid-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: short_desc 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=3D108099 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|ICE when parsing signed |ICE with type alias with |__int128_t typedef |`signed __int_128_t` --- Comment #5 from Andrew Pinski --- This is interesting: ``` typedef __int128_t t; using i128 =3D signed t; //using i128_1 =3D signed __int128_t; ``` The above does not cause an ICE only a direct use of __int128_t causes the = ICE (with -pedantic we do warn about signed being used with the typedef though)= .=