aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2015-11-05 17:00:31 +0000
committerJoseph Myers <joseph@codesourcery.com>2015-11-05 17:00:31 +0000
commit8fed86556b7e162d2926f0ba6a573ed193ff882f (patch)
tree06c023d80a3efcc412eceea1cfde2823062ef183 /ChangeLog
parent3bfee8beb8caa939020d942dfa405a3d98975749 (diff)
downloadglibc-8fed86556b7e162d2926f0ba6a573ed193ff882f.zip
glibc-8fed86556b7e162d2926f0ba6a573ed193ff882f.tar.gz
glibc-8fed86556b7e162d2926f0ba6a573ed193ff882f.tar.bz2
Don't redirect ldexp to scalbn in bits/math-finite.h (bug 19209).
bits/math-finite.h maps ldexp functions to corresponding scalbn functions. This is (a) a namespace bug for C90, which has ldexp but not scalbn, and (b) in any case useless, since the ldexp and scalbn functions have identical semantics (for floating-point types with radix 2), and since the fix for bug 6803 are actually aliases (presumably the mapping was based around the old bug of scalbn not setting errno). This patch removes the bogus redirections. Tested for x86_64 and x86. [BZ #19209] * math/bits/math-finite.h (ldexp): Remove declaration. (ldexpf): Likewise. (ldexpl): Likewise.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 90a4bb1..bc2bc69 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2015-11-05 Joseph Myers <joseph@codesourcery.com>
+ [BZ #19209]
+ * math/bits/math-finite.h (ldexp): Remove declaration.
+ (ldexpf): Likewise.
+ (ldexpl): Likewise.
+
[BZ #19205]
* math/bits/math-finite.h (acosf): Condition declaration on
[__USE_ISOC99].