blob: fc6e8a3fcb64fc3651645fa15148da52e443218f [file] [log] [blame]
/* { dg-do compile } */
int foo (char c, int i)
{
int s = 0;
while (i--)
s += c;
return s;
}