Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr50092.c
blob: c8a929b2c4d395ad357e5c82d8069af68d07ee55 [
file
] [
log
] [
blame
]
/* PR target/50092 */
/* { dg-do compile { target lp64 } } */
volatile
int
v
;
void
bar
(
long
double
);
void
baz
(
_Complex
long
double
*);
void
foo
(
void
)
{
_Complex
long
double
w
[
100000000
];
bar
((
long
double
)
v
/
2147483648.0
);
baz
(
w
);
}