2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / consec.c
blobfd76cd2eec43124f778a5508caaf061e0b0e6a1e
1 int glob;
3 conseq (a, b, c, d)
4 int *a, *b;
6 a[2] = d;
7 a[1] = c;
8 sequence (a, b, c, d);
9 sequence (d, c, b, a);
10 b[0] = 0;
11 b[1] = 123;
12 a[0] = 321;
13 a[1] = 0;
14 sequence (111, 0, 0, 222, 0, 333);
15 ((int *)glob)[2] = c;
16 ((int *)glob)[3] = d;