This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tree-optimization/25553] Missed removal of load



------- Comment #8 from pinskia at gcc dot gnu dot org  2008-04-07 01:44 -------
This turns out to be PRE for global decl issue as the following is done
correctly (at least on the trunk):
int g(int);
int f(int tt, int *t)
{
  if (tt)
    *t = 2;
  else
    *t = 3;
  return g(*t);
}
--- CUT ---
f (tt, t)
{
  int prephitmp.9;
  int D.1182;

<bb 2>:
  if (tt != 0)
    goto <bb 3>;
  else
    goto <bb 4>;

<bb 3>:
  *t = 2;
  prephitmp.9 = 2;
  goto <bb 5>;

<bb 4>:
  *t = 3;
  prephitmp.9 = 3;

<bb 5>:
  D.1182 = g (prephitmp.9) [tail call];
  return D.1182;

}


*** This bug has been marked as a duplicate of 23455 ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |DUPLICATE


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25553


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]