1  /* { dg-do compile } */
       2  /* { dg-additional-options "-march=skylake-avx512" { target x86_64-*-* i?86-*-* } } */
       3  
       4  int
       5  foo (int *a, double *b, int *c)
       6  {
       7    int f, g = 0;
       8    for (f = 0; f < 100; f++)
       9      if (b[f] && c[a[f]])
      10        g++;
      11    return g;
      12  }