From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 458C43858D20; Tue, 2 May 2023 11:46:02 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 458C43858D20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1683027962; bh=oU9Tcu/7YKYVuVh9olgWG0zpy7OzPVjbCT3Jveglihw=; h=From:To:Subject:Date:In-Reply-To:References:From; b=YjairLBrH3JoY/a3Yqf3sav19m9d1aIkXcwq9qaBWcnakz3bEItMZRCmWwIU52ITm +w++3mlqHUERivCDpHNYXc5usJSJKe7KIZKDl+3bOw/WSeOlRlRmFKuFyDu0rOJxbs fHtpY75f42Q1itqafTYk6ZEEtPbF5a/k/nceOfQo= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/109696] [14 Regression] ice: tree check fail since r14-377 Date: Tue, 02 May 2023 11:46:02 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: priority short_desc cc component target_milestone 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=3D109696 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P3 |P1 Summary|ice: tree check fail |[14 Regression] ice: tree | |check fail since r14-377 CC| |jakub at gcc dot gnu.org Component|c |tree-optimization Target Milestone|--- |14.0 --- Comment #1 from Jakub Jelinek --- Started with r14-377-gc92b8be9b52b7e0de5ad Cleaned up testcase: void foo (long x) { char buf; double t =3D x; if (t) __builtin_sprintf ((char *) (__INTPTR_TYPE__) buf, ""); } void bar (int x) { foo (x); }=