aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/ssa-ifcombine-9.c
blob: cb575022715730e64ab59ce88d1c3e0682990ba2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { 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" } } */
/* { dg-final { cleanup-tree-dump "ifcombine" } } */