Imported Upstream version 4.7.3
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.dg / vect / O-pr46167.c
1 /* { dg-do compile } */
2
3 int foo (char c, int i)
4 {
5   int s = 0;
6   while (i--)
7     s += c;
8   return s;
9 }
10
11 /* { dg-final { cleanup-tree-dump "vect" } } */