This patch introduces the following rules related to division to SCEV:
- FoundLHS > FoundRHS > 0 ---> FoundLHS / 2 > 0 >= RHS.
- FoundLHS >= FoundRHS > 0 ---> FoundLHS / 2 >= 0 >= RHS.
- FoundLHS >= FoundRHS, 0 < Denum <= FoundRHS ---> LHS = FoundLHS / Denum >= 1 >= RHS.
These rules related to signed division and are not currently covered by existing analysis.