From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 3E6CF382CB81; Wed, 14 Dec 2022 17:58:33 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3E6CF382CB81 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1671040713; bh=rtTcgYXK/IoLV5m+USvVnxLnQ/VYiYPhZcksPCHdocM=; h=From:To:Subject:Date:In-Reply-To:References:From; b=sx3agEYN8rr8egGMZydGtxGV/z8s3wUW+fdfO0W+aadMlgRELuOl5OvwnZcC0lqgT zCLr5ywFn1+EJl7wNHPsjOcTk+DQa8BfhcptTQEZ2d+SFQpcu8Z8hBYX8mUnqlH1zc EXZ6WOTwCD7ogWfIp2FHUE7JAGSMww4zdztPAG0g= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/108099] [12/13 Regression] ICE with type alias with `signed __int128_t` Date: Wed, 14 Dec 2022 17:58:28 +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: 11.4 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_known_to_work target_milestone cf_known_to_fail 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 ---------------------------------------------------------------------------- Known to work| |11.3.0 Target Milestone|--- |11.4 Known to fail| |12.1.0 Summary|ICE with type alias with |[12/13 Regression] ICE with |`signed __int128_t` |type alias with `signed | |__int128_t` --- Comment #7 from Andrew Pinski --- The ICE is a regression from GCC 11 where we accepted the code with a pedwa= rn: :1:14: warning: 'signed' specified with '__int128' [-Wpedantic] 1 | using i128 =3D signed __int128_t; | ^~~~~~=