1  /* { dg-do compile } */
       2  /* { dg-require-effective-target vect_perm } */
       3  
       4  int a, c, d;
       5  long b[6];
       6  void fn1() {
       7    for (; a < 2; a++) {
       8      c = 0;
       9      for (; c <= 5; c++)
      10        d &= b[a * 3];
      11    }
      12  }