Implement C _FloatN, _FloatNx types.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr50092.c
blobc8a929b2c4d395ad357e5c82d8069af68d07ee55
1 /* PR target/50092 */
2 /* { dg-do compile { target lp64 } } */
4 volatile int v;
6 void bar (long double);
7 void baz (_Complex long double *);
9 void
10 foo (void)
12 _Complex long double w[100000000];
13 bar ((long double) v / 2147483648.0);
14 baz (w);