blob: 1879790dd12f95f96c561c24c89e1a71ea3b7a31 [file] [log] [blame]
/* { 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;
}
}
}