blob: fafa7f463d91c4f3a59b332fc4a7c25ccc92636a [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O -ftree-vectorize -fno-tree-copy-prop -fno-tree-dce" } */
extern int A[], B[];
void
foo (int z)
{
int j, i;
for (j = 0; j < 32; j++)
{
int curr_a = A[0];
for (i = 0; i < 16; i++)
curr_a = A[i] ? curr_a : z;
B[j] = curr_a;
}
}