aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/g++.dg/opt/builtins2.C
blob: 00a28dbc1bf2e8250ad3a9bd1e0243124cbfed7a (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/49813
// We should handle asinh as a built-in in C++0x mode, even when strict.
// { dg-options "-std=c++0x" }
// { dg-final { scan-assembler-not "asinh" } }

#include <math.h>

int main()
{
  double das = asinh(1.0);
}