Implement C _FloatN, _FloatNx types.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr70780.c
blob2f7a5cbea0660607ec2fadf421511d54a7848644
1 /* { dg-do run } */
3 int a, b, c, *d, e;
5 static int
6 fn1 ()
8 if (a)
9 goto l1;
10 l2: while (b)
11 if (*d)
12 return c;
13 for (e = 0; e; e++)
15 goto l2;
16 l1:;
18 return 0;
21 int
22 main ()
24 fn1 ();
25 return 0;