1 /* { dg-do compile } */
2 /* { dg-options "-O2 -ftree-loop-distribution" } */
3 
4 void
foo(int * __restrict__ p,int * __restrict__ q,int count)5 foo (int *__restrict__ p, int *__restrict__ q, int count)
6 {
7   int i;
8   for (i = 0; i < count; i++)
9     {
10       *p++ = 0;
11       *q++ = 0;
12     }
13 }
14