Rebase.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr57081.c
blob0fcbaaa62b3c882038800ca38033c79f0722c0f0
1 /* { dg-do compile } */
3 int a;
5 void f(void)
7 int b;
9 if(0)
10 lbl:
11 goto lbl;
13 if(b)
15 int p = 0;
16 goto lbl;
19 a = 0;
20 while(b++);
21 goto lbl;