From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 960A3383E831; Mon, 11 May 2020 07:45:15 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 960A3383E831 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1589183115; bh=tkStlBgrh/93yqpgkAWO2LwZyJWX3jnntwfx7UNllr8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=L9CFerLP87Dc72fudrSqactEdh2UHvTk8gTdzJGw9wMdgYemDDwQZDsXjJHiXM7vD nY0j1uyVVI8f2vvsHbljU07e3dGH1Ms9MN/bR93itiORndSbHIZe/M9WVb6ptccW98 jM43ctd9X7lwfnEuwLrJS/Sr1ecum2OkuQuTZV5I= From: "dcb314 at hotmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug regression/95025] [11 Regression] ICE in execute_sm_exit at gcc/tree-ssa-loop-im.c:2224 since r11-161-g283cb9ea6293e813 Date: Mon, 11 May 2020 07:45:15 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: regression X-Bugzilla-Version: 11.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: dcb314 at hotmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 11.0 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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 May 2020 07:45:15 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D95025 --- Comment #6 from David Binderman --- My creduced version is similar: static a; short b; *c; d() { for (;; a--) for (; b; b++) { *c =3D 5; if (a) return; } } Flag -O2 on x86_64 required. The code seems to compile ok on the raspberry pi.=