openmp: Add testcases for omp_max_vf
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-85.c
blobe91fb45d538c6f740f4e4ded44e7ab74c9750a40
1 /* { dg-require-effective-target vect_int } */
2 /* { dg-additional-options "-fdump-tree-optimized-details-blocks" } */
4 #include <stdarg.h>
5 #include "tree-vect.h"
7 #define N 16
9 __attribute__ ((noinline))
10 int main1 (int *a)
12 int i, j, k;
13 int b[N];
15 for (i = 0; i < N; i++)
17 for (j = 0; j < N; j++)
19 k = i + N;
20 a[j] = k;
22 b[i] = k;
26 #pragma GCC novector
27 for (j = 0; j < N; j++)
28 if (a[j] != i + N - 1)
29 abort();
31 #pragma GCC novector
32 for (j = 0; j < N; j++)
33 if (b[j] != j + N)
34 abort();
36 return 0;
39 int main (void)
41 int a[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
43 check_vect ();
45 main1 (a);
47 return 0;
50 /* Fails for targets that don't vectorize PLUS (e.g alpha). */
51 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
52 /* { dg-final { scan-tree-dump-not "Invalid sum" "optimized" } } */