blob: c7bca69e46979e75b49cf9c6542d3fbf1255ebf6 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-effective-target vect_int } */
int a, b, c[10];
void
foo (unsigned int x, int y, int z, int *w)
{
do
{
*w = z;
y = x;
if (y)
for (b = -4; b; b++)
{
z = y &= a &= 1;
y &= c[b + 4];
}
}
while (1);
}