From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 60A773857412; Fri, 16 Sep 2022 19:36:18 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 60A773857412 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1663356978; bh=wEebUMPXMgRwAomePnPtYioEa5fb5Zm9M8GZ9w4Vy+k=; h=From:To:Subject:Date:In-Reply-To:References:From; b=KWoUGIxruT2X549zDMLKLuimf6f0i1iwmdtgYIpS3QFRawWUh5vXWPtHby7a6sqpp A/7+J2t02ScJDu/D+DBPEIdzj14XYyJpiB0P5CYkJmgkXMAZmPLcEbQ3v+CvcIfXic oJPASy6OfnkNKCAwj/PZZJLR7gnRhwaHDaYtMMXY= From: "jeffreyalaw at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/106958] [13 Regression] ICE in reassoc since r13-2658 Date: Fri, 16 Sep 2022 19:36:18 +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: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jeffreyalaw at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc 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=3D106958 Jeffrey A. Law changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jeffreyalaw at gmail dot c= om --- Comment #1 from Jeffrey A. Law --- Note this affects glibc builds on various targets. For example, sh3-linux-= gnu with this reduced testcase: int fmtmsg (int severity, const char *text, const char *action) { int do_severity =3D severity !=3D 0; int do_text =3D text !=3D ((char *) 0); int do_action =3D action !=3D ((char *) 0); int need_colon =3D do_severity | do_text | do_action ; frob (need_colon); }=