------- Additional Comments From kazu at cs dot umass dot edu 2004-01-01 02:23 -------
Not much different, but still simpler.
void
foo (unsigned int a, unsigned int b)
{
if (a > b)
{
while (a)
{
switch (b)
{
default:
a = 0;
case 2:
a = 0;
case 1:
a = 0;
case 0:
;
}
}
}
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13380