summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/inline2.C
blob: f1d19626685fc0c8232dbbe232fd6c327f399c8a (plain)
1
2
3
4
5
6
7
8
9
10
11
// { dg-do assemble  }
// { dg-options "-O2 -Winline" }
// Origin: Martin Reinecke <martin@MPA-Garching.MPG.DE>

#include <cmath>

int main()
{
  double foo = 4.5;
  if (std::abs (0.5-std::abs (foo-0.5)) < 1e-10) foo+=1;
}