This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c/53245] ice in expand_case


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.)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]