OSDN Git Service

PR middle-end/40692
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 20040704-1.c
1 /* PR 16348: Make sure that condition-first false loops DTRT.  */
2
3 extern void abort ();
4
5 int main()
6 {
7   for (; 0 ;)
8     {
9       abort ();
10     label:
11       return 0;
12     }
13   goto label;
14 }