2004-09-19 Ira Rosen <irar@il.ibm.com>
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-42.c
blob7f79d42de49c636b6dd9d76c96be93cc8172a6f2
1 /* { dg-do run { target powerpc*-*-* } } */
2 /* { dg-do run { target i?86-*-* x86_64-*-* } } */
3 /* { dg-options "-O2 -ftree-vectorize -fdump-tree-vect-stats -maltivec" { target powerpc*-*-* } } */
4 /* { dg-options "-O2 -ftree-vectorize -fdump-tree-vect-stats -msse" { target i?86-*-* x86_64-*-* } } */
6 #include <stdarg.h>
7 #include "tree-vect.h"
9 #define N 256
11 typedef float afloat __attribute__ ((__aligned__(16)));
13 void bar (afloat *pa, afloat *pb, afloat *pc)
15 int i;
17 /* check results: */
18 for (i = 0; i < N; i++)
20 if (pa[i] != (pb[i] * pc[i]))
21 abort ();
24 return;
28 int
29 main1 (afloat * __restrict__ pa)
31 int i;
32 afloat pb[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57};
33 afloat pc[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19};
36 for (i = 0; i < N; i++)
38 pa[i] = pb[i] * pc[i];
41 return 0;
44 int main (void)
46 int i;
47 afloat a[N];
48 afloat b[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57};
49 afloat c[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19};
51 check_vect ();
53 main1 (a);
54 bar (a,b,c);
55 return 0;
58 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect"} } */