Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr39937.c
blob: df280535f1fb92cb22c947577fb0f111b5bc4460 [
file
] [
log
] [
blame
]
/* { dg-require-stack-size "4096" } */
int
foo
(
__const
char
*
__restrict __s
);
static
void
read_anisou
(
char
line
[])
{
foo
(
line
+
1
);
}
void
read_pdbfile
(
void
)
{
char
line
[
4096
];
read_anisou
(
line
);
}