Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / vect / vect-86.c
blob66d664c81691c4d1286607f649961d02e73a6dda
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 16
8 int main1 (int n)
10 int i, j, k;
11 int a[N], b[N];
13 for (i = 0; i < n; i++)
15 for (j = 0; j < n; j++)
17 k = i + n;
18 a[j] = k;
20 b[i] = k;
24 for (j = 0; j < n; j++)
25 if (a[j] != i + n - 1)
26 abort();
28 for (i = 0; i < n; i++)
29 if (b[i] != i + n)
30 abort();
32 return 0;
35 int main (void)
37 check_vect ();
39 main1 (N);
40 main1 (0);
41 main1 (1);
42 main1 (2);
43 main1 (N-1);
45 return 0;
48 /* Fails for targets that don't vectorize PLUS (e.g alpha). */
49 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
50 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 0 "vect" } } */
51 /* { dg-final { scan-tree-dump-times "Alignment of access forced using peeling" 0 "vect" } } */
52 /* { dg-final { cleanup-tree-dump "vect" } } */