PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / O-pr46167.c
blobfc6e8a3fcb64fc3651645fa15148da52e443218f
1 /* { dg-do compile } */
3 int foo (char c, int i)
5 int s = 0;
6 while (i--)
7 s += c;
8 return s;