Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / compile / 20000629-1.c
blob58b522ed815ea0fd329cae85de99a72a597b1535
1 struct a
3 struct a * x;
4 };
6 void
7 foo (struct a * b)
9 int i;
11 for (i = 0; i < 1000; i++)
13 b->x = b;
14 b++;
18 void
19 bar (struct a * b)
21 int i;
23 for (i = 0; i < 1000; i++)
25 b->x = b;
26 b--;