aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20050622-1.c
blob: db183909f401e67ece7f0bca88e466392f7fdb8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if __SCHAR_MAX__ == 127 && __INT_MAX__ >= 2147483647
struct S { char buf[72*1024*1024]; };
#else
struct S { char buf[64]; };
#endif

extern void bar (struct S);

struct S s;

int
foo (void)
{
  bar (s);
  return 0;
}