re PR middle-end/59569 (r206148 causes internal compiler error: in vect_create_destin...
[gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr59569-1.c
1 /* PR middle-end/59569 */
2 extern char c;
3
4 void
5 foo (int i, char **j)
6 {
7 while (i)
8 j[--i] = &c;
9 }