Implement C _FloatN, _FloatNx types.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr65517.c
bloba63a03a870aecc7c443a18a836ff4e092964d257
1 /* { dg-do compile } */
3 typedef void (*argmatch_exit_fn)();
4 int a;
5 void __argmatch_die () { __builtin_exit (0); }
7 int
8 main ()
10 while (1)
12 argmatch_exit_fn b = __argmatch_die;
13 if (a)
14 b ();
16 return 0;