(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
vect-bool-1.c
       1  /* { dg-do compile } */
       2  
       3  int a[64];
       4  long b[64];
       5  
       6  void foo (void)
       7  {
       8    for (int i = 0; i < 64; ++i)
       9      {
      10        _Bool x = a[i] < 10;
      11        a[i] = x;
      12        b[i] = x;
      13      }
      14  }