2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / goto-1.c
blobcaeed3aa0ba1d4992ce2ce58bb9e279300f5390d
1 f ()
3 do
5 if (0)
7 L1:;
9 else
10 goto L2;
11 L2:;
13 while (0);
15 goto L1;