OSDN Git Service

* lib/target-supports.exp (check_effective_target_vect_int): New
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / vect-44.c
1 /* { dg-require-effective-target vect_float } */
2
3 #include <stdarg.h>
4 #include "tree-vect.h"
5
6 #define N 256
7
8 typedef float afloat __attribute__ ((__aligned__(16)));
9
10 void bar (float *pa, float *pb, float *pc) 
11 {
12   int i;
13
14   /* check results:  */
15   for (i = 0; i < N; i++)
16     {
17       if (pa[i] != (pb[i] * pc[i]))
18         abort ();
19     }
20
21   return;
22 }
23
24
25 int
26 main1 (float * __restrict__ pa, float * __restrict__ pb, float * __restrict__ pc)
27 {
28   int i;
29
30   for (i = 0; i < N; i++)
31     {
32       pa[i] = pb[i] * pc[i];
33     }
34
35   bar (pa,pb,pc);
36
37   return 0;
38 }
39
40 int main (void)
41 {
42   int i;
43   afloat a[N+4];
44   afloat b[N+4] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,63,66,69};
45   afloat c[N+4] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23};
46
47   check_vect ();
48
49   main1 (a,b,c);
50   main1 (&a[1],b,c);
51   main1 (a,&b[1],c);
52   main1 (&a[1],&b[1],&c[1]);
53
54   return 0;
55 }
56
57 /* These are not yet vectorized on targets that do not model alignment-handling
58    mechanisms.  */
59 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail i?86-*-* x86_64-*-* mipsisa64*-*-* } } } */