* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20050622-1.c
blobdb183909f401e67ece7f0bca88e466392f7fdb8d
1 #if __SCHAR_MAX__ == 127 && __INT_MAX__ >= 2147483647
2 struct S { char buf[72*1024*1024]; };
3 #else
4 struct S { char buf[64]; };
5 #endif
7 extern void bar (struct S);
9 struct S s;
11 int
12 foo (void)
14 bar (s);
15 return 0;