From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id E60183858C52; Wed, 11 Oct 2023 06:46:44 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E60183858C52 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1697006804; bh=4p26CdIeUytVgvORQ8KdqIkShuD+2vyd/PmJzlehjmE=; h=From:To:Subject:Date:In-Reply-To:References:From; b=oX5QEbjDgah+JpX5EClHqUconDrqzYPlv+FWxjpkkmmrGGyKik9LgZedj3vpgN12o uoqys1hpmNc2seDud5+vSaRechm7bE5hz6likMz1alYhWBzdT75itw6Pj+7t8XYPxo cAnpLnCqGKiqqQcx5F/3ipf+47KCYN6b8HnL4EAc= From: "fw at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/106101] [12 Regression] ICE in reg_bitfield_target_p since r12-4428-g147ed0184f403b Date: Wed, 11 Oct 2023 06:46:42 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 12.1.1 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: fw at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: krebbel at gcc dot gnu.org X-Bugzilla-Target-Milestone: 12.3 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=3D106101 --- Comment #31 from Florian Weimer --- (In reply to Andrew Pinski from comment #30) > And you can even make it a pointer to a pointer of char to hit the same b= ug > to get around the even more fuzziness of freeing an int rather than a > pointer: > ``` > int yyparse (char **yyvsp) > ``` > See https://godbolt.org/z/v7xKxWE3K -int yyparse (void) +int yyparse (char **yyvsp) { int yystate =3D 0; - int *yyvsp =3D 0; Nice, thank you.=