Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / compile / 931003-1.c
blob922b14379c9b3f4846e548553836afbafc8814f3
1 f (n, a)
2 int n;
3 double a[];
5 double b[51];
6 int i, j;
8 i = 0;
10 for (j = n - 1; j > 0; j--)
11 b[i++] = 0;
13 if (b[0] > b[i - 1])
14 a[i] = b[i - 1];