1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* PR 16348: Make sure that condition-first false loops DTRT. */ extern void abort (); int main() { for (; 0 ;) { abort (); label: return 0; } goto label; }