diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2016-01-18 17:15:42 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2016-01-18 17:15:42 +0000 |
commit | c91bcffc4a62adc87942c09c2da2f3aa7135fba4 (patch) | |
tree | 8290af848bf496df7622a7dc981f2240af92b52b | |
parent | 5803bd01272dfa59256bd552c7a1bb51e3d2af95 (diff) | |
download | gcc-c91bcffc4a62adc87942c09c2da2f3aa7135fba4.zip gcc-c91bcffc4a62adc87942c09c2da2f3aa7135fba4.tar.gz gcc-c91bcffc4a62adc87942c09c2da2f3aa7135fba4.tar.bz2 |
Add test for PR 60637
PR libstdc++/60637
* testsuite/26_numerics/headers/cmath/60637.cc: Add test.
From-SVN: r232534
-rw-r--r-- | libstdc++-v3/ChangeLog | 3 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/26_numerics/headers/cmath/60637.cc | 35 |
2 files changed, 38 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b17f595..0b7ca1b 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,8 @@ 2016-01-18 Jonathan Wakely <jwakely@redhat.com> + PR libstdc++/60637 + * testsuite/26_numerics/headers/cmath/60637.cc: Add test. + PR libstdc++/69243 * include/std/functional (_Function_base::_M_not_empty_function): Change overloads for pointers to take arguments by value. diff --git a/libstdc++-v3/testsuite/26_numerics/headers/cmath/60637.cc b/libstdc++-v3/testsuite/26_numerics/headers/cmath/60637.cc new file mode 100644 index 0000000..16a7896 --- /dev/null +++ b/libstdc++-v3/testsuite/26_numerics/headers/cmath/60637.cc @@ -0,0 +1,35 @@ +// Copyright (C) 2016 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 3, 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 COPYING3. If not see +// <http://www.gnu.org/licenses/>. + +// { dg-options "-std=gnu++98 -ffast-math" } +// { dg-do run { target i?86-*-* x86_64-*-* } } + +#include <cmath> +#include <testsuite_hooks.h> + +void +test01() +{ + long double ld = -5.3165867831218916301793863361917824e-2467L; + VERIFY( std::signbit(ld) == 1 ); +} + +int +main() +{ + test01(); +} |