modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/20050622-1.c (about) 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 6 7 extern void bar (struct S); 8 9 struct S s; 10 11 int 12 foo (void) 13 { 14 bar (s); 15 return 0; 16 }