------- Additional Comments From pinskia at gcc dot gnu dot org  2004-11-15 
02:17 -------
An example of where not doing hurts:
  int ii;
int f(int i, int b, int *c)
{
  if (b)
   ii = i +1;
  else
   {
     *c = ii = i+1;
   }
  return ii;
}

As there is a store to ii and then a load from it.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
 GCC target triplet|powerpc-apple-darwin        |


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

Reply via email to