diff options
author | Lorenz Minder <lminder@gmx.net> | 2005-01-16 09:59:06 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2005-01-16 09:59:06 +0000 |
commit | 3a2794abdb6a38e8e17108ffbd326b3af910f0ae (patch) | |
tree | 579a78f9e889c1d2e5d18bce58d218f0365f26c4 /libstdc++-v3 | |
parent | 6435c34baf300afa9f1b13418ebbe0d3a086c404 (diff) | |
download | gcc-3a2794abdb6a38e8e17108ffbd326b3af910f0ae.zip gcc-3a2794abdb6a38e8e17108ffbd326b3af910f0ae.tar.gz gcc-3a2794abdb6a38e8e17108ffbd326b3af910f0ae.tar.bz2 |
re PR libstdc++/19322 (std::isnan<>() is broken on FreeBSD)
2005-01-16 Lorenz Minder <lminder@gmx.net>
Paolo Carlini <pcarlini@suse.de>
PR libstdc++/19322
* include/c_std/std_cmath.h: Define the C99 classification facilities
directly inside namespace std:.
* testsuite/26_numerics/cmath/19322.cc: New.
Co-Authored-By: Paolo Carlini <pcarlini@suse.de>
From-SVN: r93723
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 8 | ||||
-rw-r--r-- | libstdc++-v3/include/c_std/std_cmath.h | 50 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/26_numerics/cmath/19322.cc | 47 |
3 files changed, 71 insertions, 34 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index c323137..c19c1e6 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,11 @@ +2005-01-16 Lorenz Minder <lminder@gmx.net> + Paolo Carlini <pcarlini@suse.de> + + PR libstdc++/19322 + * include/c_std/std_cmath.h: Define the C99 classification facilities + directly inside namespace std:. + * testsuite/26_numerics/cmath/19322.cc: New. + 2005-01-15 David Edelsohn <edelsohn@gnu.org> * config/os/aix/os_defines.h (_G_USING_THUNKS): Delete. diff --git a/libstdc++-v3/include/c_std/std_cmath.h b/libstdc++-v3/include/c_std/std_cmath.h index 66866b2..50ee582 100644 --- a/libstdc++-v3/include/c_std/std_cmath.h +++ b/libstdc++-v3/include/c_std/std_cmath.h @@ -1,6 +1,6 @@ // -*- C++ -*- C forwarding header. -// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003 +// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005 // Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free @@ -510,80 +510,62 @@ namespace __gnu_cxx #undef islessequal #undef islessgreater #undef isunordered -#endif /* _GLIBCXX_USE_C99_FP_MACROS_DYNAMIC */ -#endif -#if _GLIBCXX_USE_C99_MATH -#if !_GLIBCXX_USE_C99_FP_MACROS_DYNAMIC -namespace __gnu_cxx +namespace std { template<typename _Tp> int - fpclassify(_Tp __f) { return __capture_fpclassify(__f); } + fpclassify(_Tp __f) { return __gnu_cxx::__capture_fpclassify(__f); } template<typename _Tp> int - isfinite(_Tp __f) { return __capture_isfinite(__f); } + isfinite(_Tp __f) { return __gnu_cxx::__capture_isfinite(__f); } template<typename _Tp> int - isinf(_Tp __f) { return __capture_isinf(__f); } + isinf(_Tp __f) { return __gnu_cxx::__capture_isinf(__f); } template<typename _Tp> int - isnan(_Tp __f) { return __capture_isnan(__f); } + isnan(_Tp __f) { return __gnu_cxx::__capture_isnan(__f); } template<typename _Tp> int - isnormal(_Tp __f) { return __capture_isnormal(__f); } + isnormal(_Tp __f) { return __gnu_cxx::__capture_isnormal(__f); } template<typename _Tp> int - signbit(_Tp __f) { return __capture_signbit(__f); } + signbit(_Tp __f) { return __gnu_cxx::__capture_signbit(__f); } template<typename _Tp> int - isgreater(_Tp __f1, _Tp __f2) { return __capture_isgreater(__f1, __f2); } + isgreater(_Tp __f1, _Tp __f2) + { return __gnu_cxx::__capture_isgreater(__f1, __f2); } template<typename _Tp> int isgreaterequal(_Tp __f1, _Tp __f2) - { return __capture_isgreaterequal(__f1, __f2); } + { return __gnu_cxx::__capture_isgreaterequal(__f1, __f2); } template<typename _Tp> int - isless(_Tp __f1, _Tp __f2) { return __capture_isless(__f1, __f2); } + isless(_Tp __f1, _Tp __f2) + { return __gnu_cxx::__capture_isless(__f1, __f2); } template<typename _Tp> int islessequal(_Tp __f1, _Tp __f2) - { return __capture_islessequal(__f1, __f2); } + { return __gnu_cxx::__capture_islessequal(__f1, __f2); } template<typename _Tp> int islessgreater(_Tp __f1, _Tp __f2) - { return __capture_islessgreater(__f1, __f2); } + { return __gnu_cxx::__capture_islessgreater(__f1, __f2); } template<typename _Tp> int isunordered(_Tp __f1, _Tp __f2) - { return __capture_isunordered(__f1, __f2); } -} - -namespace std -{ - using __gnu_cxx::fpclassify; - using __gnu_cxx::isfinite; - using __gnu_cxx::isinf; - using __gnu_cxx::isnan; - using __gnu_cxx::isnormal; - using __gnu_cxx::signbit; - using __gnu_cxx::isgreater; - using __gnu_cxx::isgreaterequal; - using __gnu_cxx::isless; - using __gnu_cxx::islessequal; - using __gnu_cxx::islessgreater; - using __gnu_cxx::isunordered; + { return __gnu_cxx::__capture_isunordered(__f1, __f2); } } #endif /* _GLIBCXX_USE_C99_FP_MACROS_DYNAMIC */ #endif diff --git a/libstdc++-v3/testsuite/26_numerics/cmath/19322.cc b/libstdc++-v3/testsuite/26_numerics/cmath/19322.cc new file mode 100644 index 0000000..1057114 --- /dev/null +++ b/libstdc++-v3/testsuite/26_numerics/cmath/19322.cc @@ -0,0 +1,47 @@ +// Copyright (C) 2005 Free Software Foundation, Inc. +// +// This file is part of the GNU ISO C++ Library. This library is free +// software; you can redistribute it and/or modify it under the +// terms of the GNU General Public License as published by the +// Free Software Foundation; either version 2, or (at your option) +// any later version. + +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License along +// with this library; see the file COPYING. If not, write to the Free +// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, +// USA. + +// As a special exception, you may use this file as part of a free software +// library without restriction. Specifically, if other files instantiate +// templates or use macros or inline functions from this file, or you compile +// this file and link it with other files to produce an executable, this +// file does not by itself cause the resulting executable to be covered by +// the GNU General Public License. This exception does not however +// invalidate any other reasons why the executable file might be covered by +// the GNU General Public License. + +#include <cmath> +#include <testsuite_hooks.h> + +#if _GLIBCXX_USE_C99 +// libstdc++/19322 +void test01() +{ + bool test __attribute__((unused)) = true; + + VERIFY( !std::isnan(3.0) ); +} +#endif + +int main() +{ +#if _GLIBCXX_USE_C99 + test01(); +#endif + return 0; +} |