1 /* { dg-do compile } */
2 /* { dg-additional-options "-march=skylake-avx512" { target x86_64-*-* i?86-*-* } } */
3
4 int a;
5 short b, c;
6 extern short d[];
7 void e() {
8 for (short f = 1; f < (short)a; f += 2)
9 if (d[f + 1]) {
10 b = d[f];
11 c = d[f + 1];
12 }
13 }