Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
builtin5.C
blob: 652e3f58b67831c2dbe2556ceb01dbc294ea2593 [
file
] [
log
] [
blame
]
// PR c++/37276
// { dg-additional-options -fno-inline }
// { dg-final { scan-assembler "_ZSt5atanhd" } }
namespace
std
{
inline
double
atanh
(
double
__x
)
{
return
__builtin_atanh
(
__x
);
}
}
int
main
()
{
std
::
atanh
(.
3
);
return
0
;
}