------- Comment #11 from rguenth at gcc dot gnu dot org  2006-04-20 14:57 
-------
We now generate

  return (int) ((unsigned int) (long long int) b + (unsigned int) (long long
int) a);

which is harder to optimize.  But with -fwrapv and GVN tree-combiner we get

  aa_2 = (long long int) a_1;
  bb_4 = (long long int) b_3;
  D.1527_5 = a_1;
  D.1528_6 = b_3;
  D.1526_7 = D.1527_5 + D.1528_6;
  return D.1526_7;


-- 


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

Reply via email to