------- Additional Comments From pinskia at gcc dot gnu dot org  2005-04-13 
19:18 -------
One more thing, we miss a sibcal optimization due to this:
int i;
int g(void) __attribute__((pure));
int f()
{
  int t = i;
  int t1 = g();
  i = t;
  return t1;
}

-- 


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

Reply via email to