(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
vect-ooo-group-1.c
       1  /* { dg-do compile } */
       2  
       3  void
       4  f (int *restrict a, int *restrict b, int *restrict c)
       5  {
       6    for (int i = 0; i < 100; ++i)
       7      if (c[i])
       8        {
       9  	a[i * 2] = b[i * 5 + 2];
      10  	a[i * 2 + 1] = b[i * 5];
      11        }
      12  }