This commit was manufactured by cvs2svn to create branch 'gomp-branch'.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-56a.c
blob5d8ed115f18d649453a3f6b5cc4f11aebaaf58e0
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 -mmmx" { target i?86-*-* x86_64-*-* } } */
6 #include <stdarg.h>
7 #include "tree-vect.h"
9 #define N 256
11 typedef short ashort __attribute__ ((__aligned__(16)));
13 void bar (ashort *pa, ashort *pb, ashort *pc)
15 int i;
17 /* check results: */
18 for (i = 0; i < N/2; i++)
20 if (pa[i] != (pb[i+1] + pc[i+1]))
21 abort ();
24 return;
28 int
29 main1 (ashort * __restrict__ pa, ashort * __restrict__ pb, ashort * __restrict__ pc)
31 int i;
33 for (i = 0; i < N/2; i++)
35 pa[i] = pb[i+1] + pc[i+1];
38 bar (pa,pb,pc);
40 return 0;
43 int main (void)
45 int i;
46 ashort a[N];
47 ashort b[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57};
48 ashort c[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19};
50 check_vect ();
52 main1 (a,b,c);
53 return 0;
56 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */