------- Comment #3 from pinskia at gcc dot gnu dot org 2006-09-17 08:25 ------- I was thinking about this one recently, I might implement this because we could do it also for:
int f(_Bool a)
{
if (!a)
return 1000;
return 1001;
}
Where we really only need to swap the two arms and such.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15558
