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