From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 924923858D28; Mon, 11 Dec 2023 16:22:19 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 924923858D28 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1702311739; bh=KXsdjiLXvc+YRP55+1gQraAJJv+5jjSZClf7ODOajrQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=FrPONT4HIO2u4m7++HBB6KwJ4wI01M2pMFFExLXZIsRhgep99fQGiFAg6dcl+20sp /GKPFiBqBsaPMJ8k/0XSAW/CQY7HG6p5synsFdzRJgT/onem4/mhzXkRhq5XE6jgon dmkiKQ4FNPkxwuHh+GOKUiVFbUJzAJ6PxxhESlGM= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/112954] Spelling hint for typos in parameter types in function prototypes Date: Mon, 11 Dec 2023 16:22:19 +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: 14.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: enhancement 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: 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=3D112954 --- Comment #2 from Andrew Pinski --- Note on the what the C++ front-end does: Take: ``` typedef int int32_t; void function (int32t); ``` Note without the typedef here, the C++ front-end does not suggust int but w= ith the typedef, the C++ front-end does.=