blob: ca5eb47ff6b88489306f22bb542cc6d6026935af [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-funswitch-loops" } */
int a, b, c;
void f(void)
{
if(b)
{
for(a = 0; a < 1; a++)
lbl:
c = c && b ? : 0;
c = 0;
goto lbl;
}
if(a)
goto lbl;
}