blob: e229e15d87a7dfbbc9aa9f4dba1971597bf4850a [file] [log] [blame]
/* { dg-do compile } */
/* { dg-additional-options "-march=skylake-avx512" { target x86_64-*-* i?86-*-* } } */
int
foo (int *a, double *b, int *c)
{
int f, g = 0;
for (f = 0; f < 100; f++)
if (b[f] && c[a[f]])
g++;
return g;
}