From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 50B79385483F; Fri, 10 Mar 2023 03:57:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 50B79385483F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1678420677; bh=5YW2CoTkTHT10vulKs5J+pu8V/Uc9m8lyhUhq1lOKdY=; h=From:To:Subject:Date:In-Reply-To:References:From; b=UrQ3ViuEEKA/oChfmrN0s5UeFKBF1+f3L9mpNWMrCMl372iy5aAmhZ0nbxvisb4gZ vZRG7cnptcod/Z38FNzmP5xTT4VXdTjx7fo+EqKE1slWj2YV4O23Dwq6d65xnmBBW/ wFwE/fHq8TXkJUEOtZHHgK8kwKdXLvJZFc8YSiRw= From: "cvs-commit 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: Fri, 10 Mar 2023 03:57:55 +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: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: jason at gcc dot gnu.org X-Bugzilla-Target-Milestone: 11.4 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=3D108099 --- Comment #17 from CVS Commits --- The trunk branch has been updated by Jason Merrill : https://gcc.gnu.org/g:2fc55f51f9953b451d6d6ddfae23379001e6ac95 commit r13-6569-g2fc55f51f9953b451d6d6ddfae23379001e6ac95 Author: Jason Merrill Date: Thu Mar 9 17:35:24 2023 -0500 c++: signed __int128_t [PR108099] The code for handling signed + typedef was breaking on __int128_t, beca= use it isn't a proper typedef: it doesn't have DECL_ORIGINAL_TYPE. PR c++/108099 gcc/cp/ChangeLog: * decl.cc (grokdeclarator): Handle non-typedef typedef_decl. gcc/testsuite/ChangeLog: * g++.dg/ext/int128-7.C: New test.=