Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / vect / vect-3.c
blobcb1daebdfaaa332c723a991c52b2572689fc332f
1 /* { dg-require-effective-target vect_int } */
2 /* { dg-require-effective-target vect_float } */
4 #include <stdarg.h>
5 #include "tree-vect.h"
7 #define N 20
9 int
10 main1 ()
12 int i;
13 float a[N];
14 float e[N];
15 float b[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
16 float c[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
17 float d[N] = {0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30};
18 int ic[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
19 int ib[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
20 int ia[N];
22 for (i = 0; i < N; i++)
24 a[i] = b[i] + c[i] + d[i];
25 e[i] = b[i] + c[i] + d[i];
26 ia[i] = ib[i] + ic[i];
29 /* check results: */
30 for (i = 0; i <N; i++)
32 float fres = b[i] + c[i] + d[i];
33 int ires = ib[i] + ic[i];
34 if (a[i] != fres || e[i] != fres || ia[i] != ires)
35 abort ();
38 return 0;
41 int main (void)
43 check_vect ();
45 return main1 ();
48 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
49 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 0 "vect" } } */
50 /* { dg-final { cleanup-tree-dump "vect" } } */