From a734d75772136e61cb4424c02bed8e1e485a72fa Mon Sep 17 00:00:00 2001 From: paolo Date: Wed, 19 Aug 2015 13:20:29 +0000 Subject: [PATCH] 2015-08-19 Paolo Carlini * include/c_global/cmath: Fix typo in comment. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@227007 138bc75d-0d04-0410-961f-82ee72b054a4 --- libstdc++-v3/ChangeLog | 4 ++++ libstdc++-v3/include/c_global/cmath | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 5b3641e4965..91c2ff4a64a 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,9 @@ 2015-08-19 Paolo Carlini + * include/c_global/cmath: Fix typo in comment. + +2015-08-19 Paolo Carlini + * include/c_global/cmath: Revert fix for libstdc++/58625, no longer necessary (__builtin_signbit is now type-generic). diff --git a/libstdc++-v3/include/c_global/cmath b/libstdc++-v3/include/c_global/cmath index ee7615887cc..7718ea2e225 100644 --- a/libstdc++-v3/include/c_global/cmath +++ b/libstdc++-v3/include/c_global/cmath @@ -650,7 +650,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION isnormal(_Tp __x) { return __x != 0 ? true : false; } - // Note: c++/36757 is fixed, __builtin_signbit is type-generic. + // Note: middle-end/36757 is fixed, __builtin_signbit is type-generic. constexpr bool signbit(float __x) { return __builtin_signbit(__x); } -- 2.11.4.GIT