[Bug c/53245] ice in expand_case
markus at trippelsdorf dot de
gcc-bugzilla@gcc.gnu.org
Sat May 5 09:16:00 GMT 2012
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53245
Markus Trippelsdorf <markus at trippelsdorf dot de> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |markus at trippelsdorf dot
| |de
--- Comment #1 from Markus Trippelsdorf <markus at trippelsdorf dot de> 2012-05-05 09:14:29 UTC ---
Started with revision 186579.
Reduced:
int a;
char b;
void fn1 ()
{
a = (unsigned char)b;
switch (a)
{
case '\0':
case -1:
return;
default:
fn1 ();
}
}
(dcb please have a look at
http://gcc.gnu.org/wiki/A_guide_to_testcase_reduction.
It's would be easier if you could reduce your testcases yourself and it isn't
that hard, actually.)
More information about the Gcc-bugs
mailing list