From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 874FC388F05E; Mon, 25 May 2020 11:27:40 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 874FC388F05E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1590406060; bh=T9F9Lv/Tupsg11Dnv0AjqctBz0fhfkbDs66xVA7dj6w=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Lwt6rFnuopZgYOgnrj9vdTtQUMPk9IVmCdaRWqc0lEQQ0lr9BZ9q/Vyu2rrJTRRea PMI3bEaECc9M66eLLmdZSCkMxPFnqgLRfGfThGrOjepYotqQw6jdLPzspTw44Quxf8 +9Ndi9hNLPuYkJR5of9mNJMW+uAHNULNMFimj2C0= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/95211] [11 Regression] ICE in emit_unop_insn, at optabs.c:3622 Date: Mon, 25 May 2020 11:27:40 +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: 11.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub 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: 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, 25 May 2020 11:27:40 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D95211 --- Comment #4 from Jakub Jelinek --- Adjusted testcase, so that there is no UB. void bar (void); void foo (long int *x, int y, int *z, int v) { int a[y]; int b; for (b =3D 0; b < 3; ++b) z[b] =3D x[b] + 1.0f; if (v) return; bar (); }=