------- Comment #10 from pinskia at gcc dot gnu dot org 2005-10-28 18:43
-------
Here is another example which comes from PR 24568 (which really comes from
thedailywtf):
int f(int i)
{
if (i < 0) return i/10+ i;
return i/10 + i;
}
int f2(int i)
{
return i/10 + i;
}
--
pinskia at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
OtherBugsDependingO| |24568
nThis| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23286
