blob: 01ae828bd191ae010946a4fcacdaf182bae74ea4 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-effective-target vect_int } */
void f(short * __restrict__ a, short * __restrict__ b, short * __restrict__ x)
{
int i;
for (i=0;i<1024;i++)
x[i] = a[i] + b[i];
}
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */