Imported Upstream version 4.7.3
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.dg / vect / no-fre-pre-pr50208.c
1 /* { dg-do compile } */
2
3 char c;
4 int a, b;
5
6 void foo (int j)
7 {
8   int i;
9   while (--j)
10     {
11       b = 3;
12       for (i = 0; i < 2; ++i)
13         a = b ^ c;
14     }
15 }
16
17 /* { dg-final { cleanup-tree-dump "vect" } } */