1 /* PR middle-end/59569 */
2 extern char c;
3 
4 void
foo(int i,char ** j)5 foo (int i, char **j)
6 {
7   while (i)
8     j[--i] = &c;
9 }
10