blob: c5aedd7893220d6d6cc27c8e14f23760beab4e96 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-effective-target vect_int } */
void
foo (unsigned char *x, short y)
{
short i;
i = 2;
while (i < y)
{
x[i - 1] = x[i];
i = i + 1;
}
}
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */