1 // PR c++/49813
2 // We should handle asinh as a built-in in C++0x mode, even when strict.
3 // { dg-do compile { target c++11 } }
4 // { dg-final { scan-assembler-not "asinh" } }
5 
6 #include <math.h>
7 
main()8 int main()
9 {
10   double das = asinh(1.0);
11 }
12