1 /* { dg-do compile } */
2 /* { dg-options "-O -fno-trapping-math -fdump-tree-ifcombine" } */
4 double test1 (double i
, double j
)
20 /* The above should be optimized to a i > j test by ifcombine.
21 The transformation would also be legal with -ftrapping-math.
22 Instead we get u<=, which is acceptable with -fno-trapping-math. */
24 /* { dg-final { scan-tree-dump " u<= " "ifcombine" } } */
25 /* { dg-final { cleanup-tree-dump "ifcombine" } } */