aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/lookup/builtin5.C
blob: 1bd67dce5ac608db67253d33e3d66177659162dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PR c++/37276

// { dg-final { scan-assembler "_ZSt5atanhd" } }

namespace std
{
  inline double
  atanh(double __x)
  { return __builtin_atanh(__x); }
}

int main()
{
  std::atanh(.3);
  return 0;
}