(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
unswitch-loops-pr26969.c
       1  /* { dg-do compile } */
       2  /* { dg-require-effective-target vect_int } */
       3  
       4  void
       5  ruby_re_compile_fastmap (char *fastmap, int options)
       6  {
       7    int j;
       8    for (j = 0; j < (1 << 8); j++)
       9      {
      10        if (j != '\n' || (options & 4))
      11  	fastmap[j] = 1;
      12      }
      13  }
      14