Merge reload-branch up to revision 101000
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 900116-1.c
blob37c7eb789b9ce219afdd6734bb76dfd478b4a18e
1 struct st {char a, b, c, d; }
3 zloop (struct st *s, int *p, int *q)
5 int i;
6 struct st ss;
8 for (i = 0; i < 100; i++)
10 ss = s[i];
11 p[i] = ss.c;
12 q[i] = ss.b;