From a13d0d745ca3ea5e80506db7de0498d74d44a5b7 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Tue, 21 Oct 2014 23:11:49 +0000 Subject: [PATCH] Don't use INTDEF with __ldexpf (bug 14132). Continuing the removal of the obsolete INTDEF / INTUSE mechanism, this patch removes the use of INTDEF for __ldexpf. As far as I can tell, the resulting alias is completely unused. Tested for x86_64 that stripped installed shared libraries are unchanged by this patch. [BZ #14132] * math/s_ldexpf.c (__ldexpf): Do not use INTDEF. --- ChangeLog | 5 +++++ math/s_ldexpf.c | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index bb59eadfe4..4ba13b3fdb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-10-21 Joseph Myers + + [BZ #14132] + * math/s_ldexpf.c (__ldexpf): Do not use INTDEF. + 2014-10-21 Roland McGrath * nptl/version.c (__nptl_main): Call __libc_write, not __write. diff --git a/math/s_ldexpf.c b/math/s_ldexpf.c index b105e293cc..bd946776e2 100644 --- a/math/s_ldexpf.c +++ b/math/s_ldexpf.c @@ -28,5 +28,4 @@ float __ldexpf(float value, int exp) if(!__finitef(value)||value==(float)0.0) __set_errno (ERANGE); return value; } -INTDEF(__ldexpf) weak_alias (__ldexpf, ldexpf) -- 2.11.4.GIT