From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 61C163893654; Mon, 11 May 2020 15:53:44 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 61C163893654 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1589212424; bh=NX4TmrmFwSY1SfyvkozseANDtRG3Z0aqY+6gVGAHwmQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Zy+nQ282s4uydsLGSfpkkQ6kCJglK1cF4COyZvVk2mNHAeS1hHbQy8bhxtqa7alKe 1w+h2wKJCp+FaQYfSoFbNx0C4EtWdLdFUAz2WiVhOQWsHYzOTr8adB0eDgYYJrFq7t kyRlTEFzaGN73Pd8OWdtEV81CjqjC3ClEIJZc6pk= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/95049] [9/10/11 Regression] GCC never terminates with trivial input program Date: Mon, 11 May 2020 15:53:44 +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: 9.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 9.4 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 15:53:44 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D95049 --- Comment #2 from CVS Commits --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:84f4954c38228e4cb3e6f0b5471883e6c2523631 commit r11-277-g84f4954c38228e4cb3e6f0b5471883e6c2523631 Author: Richard Biener Date: Mon May 11 13:40:37 2020 +0200 tree-optimization/95049 - fix not terminating RPO VN iteration This rejects lattice changes from one constant to another. 2020-05-11 Richard Biener PR tree-optimization/95049 * tree-ssa-sccvn.c (set_ssa_val_to): Reject lattice transition between different constants. * gcc.dg/torture/pr95049.c: New testcase.=