From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 09552385ED4A; Fri, 5 Feb 2021 09:10:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 09552385ED4A From: "krebbel at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/98973] New: [11 regression] Wrong code with gcse store motion pass Date: Fri, 05 Feb 2021 09:10:57 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 11.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: krebbel at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: 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: Fri, 05 Feb 2021 09:10:58 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D98973 Bug ID: 98973 Summary: [11 regression] Wrong code with gcse store motion pass Product: gcc Version: 11.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: rtl-optimization Assignee: unassigned at gcc dot gnu.org Reporter: krebbel at gcc dot gnu.org Target Milestone: --- This test aborts when compiled on IBM Z with: gcc -O3 t.c -o t -fgcse-sm it succeeds with -O2 or without -fgcse-sm Tested with Commit ID: 072f20c5559 It works with GCC 10 branch: eb15f761bc7 long a; int b, c; short d; int e[] =3D { 1, 1, 0, 1, 1, 1, 1, 1, 1, 1 }; void f () { g: c =3D 9; for (; c >=3D 3; c--) { int h[5]; for (; d; d--) ; for (; a;) if (e[c]) b =3D h[4]; if (e[c]) continue; goto g; } } int main () { f (); if (c !=3D 2) __builtin_abort(); }=