blob: 198823b1962548c407f2aa59006a1d6928098730 [file] [log] [blame]
/* PR c/16180 */
/* { dg-options "-O2" } */
extern int b;
int foo (int a)
{
if (a)
{
b = 0;
for(;;)
goto L;
}
L:
for(;;)
return 0;
}