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/53881] ice in emit_case_bit_tests


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53881

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-07-06 17:51:31 UTC ---
With your testcase I get:
...
bug80.c:30739:3: internal compiler error: in hoist_edge_and_branch_if_true, at
tree-switch-conversion.c:79

Reduced:

int a, b;
void
fn1 ()
{
  int c;
  switch (a)
    {
    case 8:
      c = 0;
      goto Label;
    case 0:
    case 1:
Label:
      break;
    default:
      b = 0;
    }
}


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