Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / compile / pr21030.c
blobb7590c0edaa4731df405a680d0fb0fa315c8a9ad
1 /* PR tree-optimization/21030
2 VRP used to create invalid ranges where VR->MIN is greater than
3 VR->MAX. */
5 void
6 foo (int unit)
8 int i;
10 for (i = 0; unit; i++, unit--)
12 if (i >= 0)
14 int j = i;
15 while (j)
16 j--;