Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / stuct.c
blobdeb838d809904cc8bc38c0ad1ac9e5ce7116b4e5
1 #ifdef STACK_SIZE
2 #define SIZE STACK_SIZE / 8
3 #else
4 #define SIZE 10000000
5 #endif
7 struct foo
9 int a, b, c;
10 int arr[SIZE];
13 struct foo s, ss;
15 main ()
18 s.b = 2;
19 s.c = 3;
20 ss.b = 2;
21 ss.c = 3;