Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr39007.c
blob94b24436d69f71e707e5d0838d923f45d44d7a00
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -ftree-loop-distribution" } */
4 void
5 foo (int *__restrict__ p, int *__restrict__ q, int count)
7 int i;
8 for (i = 0; i < count; i++)
10 *p++ = 0;
11 *q++ = 0;