aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/opt/ifcvt1.C
blob: 8fcbf4619078b1a8d685047d2393bbf844238c4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// { dg-do compile }
// { dg-options "-O2 -fnon-call-exceptions" }

struct S { ~S () throw () {} };
double bar ();

int
foo ()
{
  S a;
  int i = 0;
  double c = bar ();
  c = c < 0 ? -c : c;
  if (c <= 1.e-8)
    i += 24;
  return i;
}