(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
O-pr46167.c
       1  /* { dg-do compile } */
       2  
       3  int foo (char c, int i)
       4  {
       5    int s = 0;
       6    while (i--)
       7      s += c;
       8    return s;
       9  }
      10