This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/53245] ice in expand_case
- From: "markus at trippelsdorf dot de" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Sat, 05 May 2012 09:14:29 +0000
- Subject: [Bug c/53245] ice in expand_case
- Auto-submitted: auto-generated
- References: <bug-53245-4@http.gcc.gnu.org/bugzilla/>
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.)