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