URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [builtin5.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// 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;
}
Go to most recent revision | Compare with Previous | Blame | View Log