------- Additional Comments From pinskia at gcc dot gnu dot org  2004-12-17 
14:25 -------
Another example where we don't get the optimization and f1 is still one 
instruction (on 32bit PPC):
int f(int a,int b)
{
  a|=b;
  a^=b;
  return a;
}

int f1(int a,int b)
{
  return a&=~b;
}

-- 


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

Reply via email to