OSDN Git Service

Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 18_support / numeric_limits / digits10.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 // libstdc++/5045
32 bool test03()
33 {
34   bool test __attribute__((unused)) = true;
35
36   VERIFY( std::numeric_limits<bool>::digits10 == 0 );
37   if (__CHAR_BIT__ == 8)
38     {
39       VERIFY( std::numeric_limits<signed char>::digits10 == 2 );
40       VERIFY( std::numeric_limits<unsigned char>::digits10 == 2 );
41     }
42   if (__CHAR_BIT__ * sizeof(short) == 16)
43     {
44       VERIFY( std::numeric_limits<signed short>::digits10 == 4 );
45       VERIFY( std::numeric_limits<unsigned short>::digits10 == 4 );
46     }
47   if (__CHAR_BIT__ * sizeof(int) == 32)
48     {
49       VERIFY( std::numeric_limits<signed int>::digits10 == 9 );
50       VERIFY( std::numeric_limits<unsigned int>::digits10 == 9 );
51     }
52   if (__CHAR_BIT__ * sizeof(long long) == 64)
53     {
54       VERIFY( std::numeric_limits<signed long long>::digits10 == 18 );
55       VERIFY( std::numeric_limits<unsigned long long>::digits10 == 19 );
56     }
57   return test;
58 }
59
60 int main()
61 {
62   test03();
63
64   return 0;
65 }