OSDN Git Service

2012-02-28 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / torture / pr50092.c
1 /* PR target/50092 */
2 /* { dg-do compile { target lp64 } } */
3
4 volatile int v;
5
6 void bar (long double);
7 void baz (_Complex long double *);
8
9 void
10 foo (void)
11 {
12   _Complex long double w[100000000];
13   bar ((long double) v / 2147483648.0);
14   baz (w);
15 }