PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20040704-1.c
blobc6b23d03258de6aefd0a175d14dbd0ea2bdc6d70
1 /* PR 16348: Make sure that condition-first false loops DTRT. */
3 extern void abort ();
5 int main()
7 for (; 0 ;)
9 abort ();
10 label:
11 return 0;
13 goto label;