Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20050622-1.c
blob829f9dd857d3c7367ab73b59b21914429bf676fe
1 /* { dg-skip-if "Array too big" { "pdp11-*-*" } { "-mint32" } } */
3 #if __SCHAR_MAX__ == 127 && __INT_MAX__ >= 2147483647
4 struct S { char buf[72*1024*1024]; };
5 #else
6 struct S { char buf[64]; };
7 #endif
9 extern void bar (struct S);
11 struct S s;
13 int
14 foo (void)
16 bar (s);
17 return 0;