Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.dg / tree-ssa / pr21829.c
blobc95714ab9fb8196deb7ae8eef6fcf78d0c5712bf
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 int test(int v)
6 int x = 0;
7 int u;
8 for (u=0;u<2;u++)
10 if (u>v)
12 if (u%2==1)
13 x++;
16 return x;
19 /* This should be unrolled and optimized into conditional set of return value "v < 0". */
21 /* { dg-final { scan-tree-dump-not "if \\(" "optimized" } } */
22 /* { dg-final { cleanup-tree-dump "optimized" } } */