(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr105132.c
       1  /* { dg-do compile } */
       2  /* { dg-additional-options "-march=skylake-avx512" { target x86_64-*-* i?86-*-* } } */
       3  
       4  short a;
       5  extern int b[];
       6  int c;
       7  void d(long f[][5][5][17], int g[][5][5][17]) {
       8    for (short e = 0; e < 17; e++) {
       9      a = g[19][2][3][e];
      10      b[e] = c & (f[3][2][3][e] && g[19][2][3][e]);
      11    }
      12  }