Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr56837.c
blob: a6ce2af71ad8948778efefb431aa1fc0602caadd [
file
] [
log
] [
blame
]
extern
void
abort
(
void
);
_Complex
int
a
[
1024
];
__attribute__
((
noinline
,
noclone
))
void
foo
(
void
)
{
int
i
;
for
(
i
=
0
;
i
<
1024
;
i
++)
a
[
i
]
=
-
1
;
}
int
main
()
{
int
i
;
foo
();
for
(
i
=
0
;
i
<
1024
;
i
++)
if
(
a
[
i
]
!=
-
1
)
abort
();
return
0
;
}