1 /* { dg-do compile } */
2 /* { dg-additional-options "-mavx2" { target x86_64-*-* i?86-*-* } } */
3
4 extern int a, b, c, d, e, f;
fn1()5 void fn1()
6 {
7 for (int g = 0; g < d; g = 1)
8 for (int h = 0; h < 8; h = h + 2)
9 for (int i = h; i < h + 2; i = i + 1)
10 f = a && e || c && b;
11 }
12