Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
920929-1.c
blob: 061617df753586d01bdbe1e0bbf3933ca8155029 [
file
] [
log
] [
blame
]
/* { dg-skip-if "requires alloca" { ! alloca } { "-O0" } { "" } } */
/* REPRODUCED:RUN:SIGNAL MACHINE:sparc OPTIONS: */
f
(
int
n
)
{
int
i
;
double
v
[
n
];
for
(
i
=
0
;
i
<
n
;
i
++)
v
[
i
]=
0
;
}
main
()
{
f
(
100
);
exit
(
0
);
}