blob: e03aa0f27b9c85eee1389d37b6e84b603b499a24 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-effective-target vect_int } */
typedef unsigned int u_int;
void foo (u_int* __restrict x, u_int* __restrict y, u_int n)
{
u_int i;
for (i=1; i<=n; i++, x++, y++)
*x += *y;
}
/* { dg-final { scan-tree-dump "vectorized 1 loops" "vect" } } */