rt_gccstream/gcc/testsuite/gcc.dg/switch-1.c

18 lines
223 B
C

/* { dg-do compile { target fpic } } */
/* { dg-options "-fpic -O2" } */
void f (char *s)
{
for (;;)
{
int t = 6;
switch (t)
{
case 2:
*s = '2';
case 6: case 4: case 3: case 1:
break;
}
}
}