public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/51879] New: Missed tail merging with non-const/pure calls
@ 2012-01-17 11:34 jakub at gcc dot gnu.org
  2012-01-18  6:14 ` [Bug tree-optimization/51879] " vries at gcc dot gnu.org
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-01-17 11:34 UTC (permalink / raw)
  To: gcc-bugs

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);


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2012-07-06 11:31 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-17 11:34 [Bug tree-optimization/51879] New: Missed tail merging with non-const/pure calls jakub at gcc dot gnu.org
2012-01-18  6:14 ` [Bug tree-optimization/51879] " vries at gcc dot gnu.org
2012-01-18 10:46 ` jakub at gcc dot gnu.org
2012-01-18 10:59 ` rguenth at gcc dot gnu.org
2012-01-18 11:23 ` rguenth at gcc dot gnu.org
2012-01-23 14:51 ` vries at gcc dot gnu.org
2012-01-24 10:21 ` vries at gcc dot gnu.org
2012-01-25 10:10 ` vries at gcc dot gnu.org
2012-02-01 11:20 ` vries at gcc dot gnu.org
2012-04-27  6:13 ` vries at gcc dot gnu.org
2012-04-27  6:29 ` vries at gcc dot gnu.org
2012-04-27  6:36 ` vries at gcc dot gnu.org
2012-07-06 11:22 ` vries at gcc dot gnu.org
2012-07-06 11:22 ` vries at gcc dot gnu.org
2012-07-06 11:22 ` vries at gcc dot gnu.org
2012-07-06 11:31 ` vries at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).