From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19723 invoked by alias); 17 Jan 2012 11:22:56 -0000 Received: (qmail 19708 invoked by uid 22791); 17 Jan 2012 11:22:55 -0000 X-SWARE-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 17 Jan 2012 11:22:08 +0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/51879] New: Missed tail merging with non-const/pure calls Date: Tue, 17 Jan 2012 11:34:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2012-01/txt/msg01884.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51879 Bug #: 51879 Summary: Missed tail merging with non-const/pure calls Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: enhancement Priority: P3 Component: tree-optimization AssignedTo: unassigned@gcc.gnu.org ReportedBy: jakub@gcc.gnu.org CC: vries@gcc.gnu.org Depends on: 51877 We don't tail merge currently: int bar (int); void baz (int); void foo (int y) { int a; if (y == 6) a = bar (7); else a = bar (7); baz (a); } (both before the PR51877 fix and after it), because both SSA_NAMEs on the lhs of the calls aren't valueized the same by SCCVN. Similarly for: if (y == 6) a = bar (7) + 6; else a = bar (7) + 6; or if (y) baz (bar (7) + 6); else baz (bar (7) + 6);