OSDN Git Service

6aac433d962929736f269b2e59caf91092f61f6b
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 18_support / numeric_limits / traps.cc
1 // { dg-options "-mieee" { target alpha*-*-* } }
2 // { dg-options "-mieee" { target sh*-*-* } }
3
4 // Copyright (C) 2005, 2009 Free Software Foundation
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
11
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING3.  If not see
19 // <http://www.gnu.org/licenses/>.
20
21 // 18.2.1.1 template class numeric_limits
22
23 #include <limits>
24 #include <testsuite_hooks.h>
25
26 template<typename T>
27   void 
28   test_traps(T r = T(0))
29   {
30     typedef T value_type;
31     volatile value_type i(5);
32     volatile value_type j(0);
33     
34     if (!std::numeric_limits<value_type>::traps)
35       r = i / j;
36   }
37
38 // libstdc++/22203
39 int main()
40 {
41   test_traps<int>();
42   test_traps<unsigned int>();
43   test_traps<long>();
44   test_traps<unsigned long>();
45   test_traps<long long>();
46   test_traps<unsigned long long>();
47  
48   /*
49     For floating points, trapping is a different, more complicated
50     story.  If is_iecxxx is true, then division by zero would not trap
51     (infinity).  If is_iecxxx is false, we don't know (VAX may trap for
52     0/0 -- I have to check).  For most cases (i.e. IEE-754), trapping
53     for floating points have to do with whether there is a support for
54     signaling NaN.
55     - Gaby.
56   */
57   //  test_traps<float>();
58   //  test_traps<double>();
59   //  test_traps<long double>();
60
61   return 0;
62 }