1 // { dg-require-c-std "" }
2 // { dg-options "-mieee" { target sh*-*-* } }
4 // 2007-01-10 Edward Smith-Rowland <3dw4rd@verizon.net>
6 // Copyright (C) 2007 Free Software Foundation, Inc.
8 // This file is part of the GNU ISO C++ Library. This library is free
9 // software; you can redistribute it and/or modify it under the
10 // terms of the GNU General Public License as published by the
11 // Free Software Foundation; either version 2, or (at your option)
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 // GNU General Public License for more details.
19 // You should have received a copy of the GNU General Public License along
20 // with this library; see the file COPYING. If not, write to the Free
21 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
27 #include <testsuite_hooks.h>
32 float kf = std::numeric_limits<float>::quiet_NaN();
33 double kd = std::numeric_limits<double>::quiet_NaN();
34 long double kl = std::numeric_limits<long double>::quiet_NaN();
36 float phif = std::atan2(1.0F, 1.0F);
37 double phid = std::atan2(1.0, 1.0);
38 long double phil = std::atan2(1.0L, 1.0L);
40 float a = std::tr1::ellint_1(kf, phif);
41 float b = std::tr1::ellint_1f(kf, phif);
42 double c = std::tr1::ellint_1(kd, phid);
43 long double d = std::tr1::ellint_1(kl, phil);
44 long double e = std::tr1::ellint_1l(kl, phil);
46 VERIFY(std::tr1::isnan<float>(a));
47 VERIFY(std::tr1::isnan<float>(b));
48 VERIFY(std::tr1::isnan<double>(c));
49 VERIFY(std::tr1::isnan<long double>(d));
50 VERIFY(std::tr1::isnan<long double>(e));
60 long double kl = 0.5L;
62 float phif = std::numeric_limits<float>::quiet_NaN();
63 double phid = std::numeric_limits<double>::quiet_NaN();
64 long double phil = std::numeric_limits<long double>::quiet_NaN();
66 float a = std::tr1::ellint_1(kf, phif);
67 float b = std::tr1::ellint_1f(kf, phif);
68 double c = std::tr1::ellint_1(kd, phid);
69 long double d = std::tr1::ellint_1(kl, phil);
70 long double e = std::tr1::ellint_1l(kl, phil);
72 VERIFY(std::tr1::isnan<float>(a));
73 VERIFY(std::tr1::isnan<float>(b));
74 VERIFY(std::tr1::isnan<double>(c));
75 VERIFY(std::tr1::isnan<long double>(d));
76 VERIFY(std::tr1::isnan<long double>(e));