1 /* { dg-do compile } */
2 /* { dg-options "-fwrapv -fdump-tree-gimple" } */
f(int i)3 int f (int i)
4 {
5   return (i - 2) > i;
6 }
7 
g(int i)8 int g (int i)
9 {
10   return (i + 2) < i;
11 }
12 
h(double i)13 int h (double i)
14 {
15   return (i + 2.0) <= i;
16 }
17 /* { dg-final { scan-tree-dump-times " = 0" 0 "gimple" } } */
18 /* { dg-final { cleanup-tree-dump "gimple" } } */
19