remove unused files
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.dg / pr53881-2.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3
4 int a,b,c;
5 void
6 fn1 ()
7 {
8   switch (a)
9     {
10     case 0:
11     case 10:
12       b=c;
13 out_bcon:
14       break;
15     case 3:
16       goto out_bcon;
17     }
18 }
19