view gcc/testsuite/g++.dg/opt/ifcvt1.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// { 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;
}