1 /* { dg-do compile } */ 2 foo(char c,int i)3 int foo (char c, int i) 4 { 5 int s = 0; 6 while (i--) 7 s += c; 8 return s; 9 } 10 11