PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / c1.c
blobf50d437f60b9966bd21323cbf791b177e325f9d4
1 unsigned
2 rec (a, b)
3 unsigned a;
4 unsigned b;
6 return a * rec (a - 1, b + 1);