Don't use INTDEF with __ldexpf (bug 14132).
authorJoseph Myers <joseph@codesourcery.com>
Tue, 21 Oct 2014 23:11:49 +0000 (23:11 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Tue, 21 Oct 2014 23:11:49 +0000 (23:11 +0000)
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
math/s_ldexpf.c

index bb59ead..4ba13b3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-10-21  Joseph Myers  <joseph@codesourcery.com>
+
+       [BZ #14132]
+       * math/s_ldexpf.c (__ldexpf): Do not use INTDEF.
+
 2014-10-21  Roland McGrath  <roland@hack.frob.com>
 
        * nptl/version.c (__nptl_main): Call __libc_write, not __write.
index b105e29..bd94677 100644 (file)
@@ -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)