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();
38 long double nul = 0.2L;
40 float phif = std::atan2(1.0F, 1.0F);
41 double phid = std::atan2(1.0, 1.0);
42 long double phil = std::atan2(1.0L, 1.0L);
44 float a = std::tr1::ellint_3(kf, nuf, phif);
45 float b = std::tr1::ellint_3f(kf, nuf, phif);
46 double c = std::tr1::ellint_3(kd, nud, phid);
47 long double d = std::tr1::ellint_3(kl, nul, phil);
48 long double e = std::tr1::ellint_3l(kl, nul, phil);
50 VERIFY(std::tr1::isnan<float>(a));
51 VERIFY(std::tr1::isnan<float>(b));
52 VERIFY(std::tr1::isnan<double>(c));
53 VERIFY(std::tr1::isnan<long double>(d));
54 VERIFY(std::tr1::isnan<long double>(e));
64 long double kl = 0.5L;
66 float nuf = std::numeric_limits<float>::quiet_NaN();
67 double nud = std::numeric_limits<double>::quiet_NaN();
68 long double nul = std::numeric_limits<long double>::quiet_NaN();
70 float phif = std::atan2(1.0F, 1.0F);
71 double phid = std::atan2(1.0, 1.0);
72 long double phil = std::atan2(1.0L, 1.0L);
74 float a = std::tr1::ellint_3(kf, nuf, phif);
75 float b = std::tr1::ellint_3f(kf, nuf, phif);
76 double c = std::tr1::ellint_3(kd, nud, phid);
77 long double d = std::tr1::ellint_3(kl, nul, phil);
78 long double e = std::tr1::ellint_3l(kl, nul, phil);
80 VERIFY(std::tr1::isnan<float>(a));
81 VERIFY(std::tr1::isnan<float>(b));
82 VERIFY(std::tr1::isnan<double>(c));
83 VERIFY(std::tr1::isnan<long double>(d));
84 VERIFY(std::tr1::isnan<long double>(e));
94 long double kl = 0.5L;
98 long double nul = 0.2L;
100 float phif = std::numeric_limits<float>::quiet_NaN();
101 double phid = std::numeric_limits<double>::quiet_NaN();
102 long double phil = std::numeric_limits<long double>::quiet_NaN();
104 float a = std::tr1::ellint_3(kf, nuf, phif);
105 float b = std::tr1::ellint_3f(kf, nuf, phif);
106 double c = std::tr1::ellint_3(kd, nud, phid);
107 long double d = std::tr1::ellint_3(kl, nul, phil);
108 long double e = std::tr1::ellint_3l(kl, nul, phil);
110 VERIFY(std::tr1::isnan<float>(a));
111 VERIFY(std::tr1::isnan<float>(b));
112 VERIFY(std::tr1::isnan<double>(c));
113 VERIFY(std::tr1::isnan<long double>(d));
114 VERIFY(std::tr1::isnan<long double>(e));