aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/opt/builtins2.C
blob: 658c128d62deed82b4a5a80cc0050822bda81164 (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-do compile { target c++11 } }
// { dg-final { scan-assembler-not "asinh" } }

#include <math.h>

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