Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / vect / vect-107.c
blob8ccde5b0a77755dea29140dd2728bdc01fbd42ea
1 /* { dg-require-effective-target vect_float } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 16
8 int
9 main1 (void)
11 int i;
12 float a[N];
13 float b[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
14 float c[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
15 float d[N] = {0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30};
17 /* Strided access pattern. */
18 for (i = 0; i < N/2; i++)
20 a[i] = b[2*i+1] * c[2*i+1] - b[2*i] * c[2*i];
21 d[i] = b[2*i] * c[2*i+1] + b[2*i+1] * c[2*i];
24 /* Check results. */
25 for (i = 0; i < N/2; i++)
27 if (a[i] != b[2*i+1] * c[2*i+1] - b[2*i] * c[2*i]
28 || d[i] != b[2*i] * c[2*i+1] + b[2*i+1] * c[2*i])
29 abort();
32 return 0;
35 int main (void)
37 check_vect ();
38 return main1 ();
41 /* Needs interleaving support. */
42 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_strided } } } */
43 /* { dg-final { scan-tree-dump-times "vectorized 0 loops" 1 "vect" { xfail vect_strided } } } */
44 /* { dg-final { cleanup-tree-dump "vect" } } */