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