Implement C _FloatN, _FloatNx types.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr57075.c
blobdee74a844b11722f608b3b56af4beab958eccbd8
1 /* { dg-do compile } */
3 extern int baz (void) __attribute__ ((returns_twice));
4 int __attribute__ ((__leaf__))
5 foo (void)
7 return __builtin_printf ("$");
10 void
11 bar ()
13 foo ();
14 baz ();