Sign in
gnu
/
gcc.git
/
94edbc153ae4f1c1532859836e528fc480da82d6
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
msp.c
blob: 6eeb9bcce21d5da55f4591bb487a3ee87e5b05c1 [
file
] [
log
] [
blame
]
/* { dg-add-options stack_size } */
void
bar
(
int
*);
#ifdef
STACK_SIZE
# define A_SIZE (STACK_SIZE/sizeof(int))
#else
# define A_SIZE 16384
#endif
void
foo
(
void
)
{
int
a
[
A_SIZE
];
bar
(
a
);
}