OSDN Git Service

581ceeaf7ede54898f21350d31f1ff2110566ee5
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 18_support / numeric_limits / quiet_NaN.cc
1 // { dg-options "-mieee" { target alpha*-*-* } }
2 // { dg-options "-mieee" { target sh*-*-* } }
3
4 // 1999-08-23 bkoz
5
6 // Copyright (C) 1999, 2001, 2002, 2003, 2004, 2009 Free Software Foundation
7 //
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 3, or (at your option)
12 // any later version.
13
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.
18
19 // You should have received a copy of the GNU General Public License along
20 // with this library; see the file COPYING3.  If not see
21 // <http://www.gnu.org/licenses/>.
22
23 // 18.2.1.1 template class numeric_limits
24
25 #include <limits>
26 #include <limits.h>
27 #include <float.h>
28 #include <cwchar>
29 #include <testsuite_hooks.h>
30
31 template<typename T>
32 void
33 test_qnan()
34 {
35   bool test;
36
37   if (std::numeric_limits<T>::has_quiet_NaN)
38     {
39       T nan = std::numeric_limits<T>::quiet_NaN();
40       test = (nan != nan);
41     }
42   else
43     test = true;
44
45   VERIFY (test);
46 }
47
48 int main()
49 {
50   test_qnan<float>();
51   test_qnan<double>();
52   test_qnan<long double>();
53
54   return 0;
55 }