From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id CCE2D3850435; Thu, 8 Oct 2020 17:36:54 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CCE2D3850435 From: "hubicka at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug ipa/97292] [11 Regression] dealII from SPECCPU 2006 no longer terminates after g:c34db4b6f8a5d80367c709309f9b00cb32630054 Date: Thu, 08 Oct 2020 17:36:54 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: ipa X-Bugzilla-Version: 11.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: hubicka at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: hubicka 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: Thu, 08 Oct 2020 17:36:54 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D97292 --- Comment #14 from Jan Hubicka --- So this really seems that the alias set 6 is not conflicting with alias se= ts 11 or 13. active_cell is struct active_cell_iterator active_cell; and the code around seems SRA injected MEM[(struct TriaRawIterator *)&active_cell] =3D{v} {CLOBBER};=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 MEM [(struct DoFCellAccessor *)&active_cell] =3D cell$dof_handler_253; MEM [(struct DoFCellAccessor *)&active_cell + 8B] =3D cell$8$present_level_242; MEM [(struct DoFCellAccessor *)&active_cell + 12B] =3D cell$8$present_index_245; MEM [(struct DoFCellAccessor *)&active_cel= l + 16B] =3D cell$8$tria_244; operator++ (&active_cell);=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20 MEM[(struct TriaRawIterator *)&D.17355].accessor =3D MEM[(const struct TriaRawIterator &)&active_cell].accessor; and we CSE is acrss the call Honza=