1 /* PR middle-end/59569 */
foo(int * a,int b)2 void foo (int *a, int b)
3 {
4   for (; b; b--)
5     a[b] = 1;
6 }
7