blob: c4c55732e450448f6711380a2ed10e2ccca7196f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* { dg-do compile } */
/* { dg-options "-O2 -fno-trapping-math -fdump-tree-ifcombine" } */
void f ();
enum Sign { NEG=-1, ZERO, POS };
static inline enum Sign sign (double x)
{
if (x > 0) return POS;
if (x < 0) return NEG;
return ZERO;
}
void g (double x)
{
if (sign (x) == NEG) f();
}
/* The above should be optimized to x < 0 by ifcombine.
The transformation would also be legal with -ftrapping-math. */
/* { dg-final { scan-tree-dump "optimizing.* < " "ifcombine" } } */
|