1  /* { dg-do compile } */
       2  /* { dg-options "-funroll-loops -O2 -fno-gcse -mavx512vbmi -fno-ivopts -mstv" } */
       3  
       4  int a, b, e;
       5  long long c;
       6  int d[6];
       7  
       8  void fn1() {
       9      int i;
      10      unsigned f;
      11      c = a;
      12      f = i;
      13      for (; i < b; i++)
      14        if (d[i] > f)
      15  	f = d[i];
      16      e = f;
      17  }