aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr39937.c
blob: df280535f1fb92cb22c947577fb0f111b5bc4460 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { 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);
}