1  /* PR target/69820 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O3 -mavx512f -mno-avx512bw" } */
       4  
       5  int a[100], b[100];
       6  short c[100];
       7  
       8  void
       9  foo ()
      10  {
      11    int i;
      12    for (i = 0; i < 100; ++i)
      13      b[i] = a[i] * (_Bool) c[i];
      14  }