Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.dg / graphite / pr50561.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -floop-strip-mine" } */
3
4 void f (unsigned *s)
5 {
6   int n;
7   for (n = 0; n < 256; n++)
8     s[n] = 0;
9 }