OSDN Git Service

PR tree-optimization/25125
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / vect-86.c
1 /* { dg-require-effective-target vect_int } */
2
3 #include <stdarg.h>
4 #include "tree-vect.h"
5
6 #define N 16
7
8 int main1 (int n)
9 {
10   int i, j, k;
11   int a[N], b[N];
12
13   for (i = 0; i < n; i++)
14     {
15       for (j = 0; j < n; j++)
16         {
17           k = i + n;
18           a[j] = k;
19         }
20       b[i] = k;
21     }
22
23
24   for (j = 0; j < n; j++)
25     if (a[j] != i + n - 1)
26       abort();  
27
28   for (i = 0; i < n; i++)
29     if (b[i] != i + n)
30       abort();  
31
32   return 0;
33 }
34
35 int main (void)
36
37   check_vect ();
38
39   main1 (N);
40   main1 (0);
41   main1 (1);
42   main1 (2);
43   main1 (N-1);
44
45   return 0;
46 }
47
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" } } */