]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
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 bb59eadfe43bbfd908c3133aa348ee498ece2e4f..4ba13b3fdbdc95b2b3164e35612e093d72763c9b 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 b105e293cc2e4c935c583f2d49eb56979c6dc4f4..bd946776e285d1ed7cc1ae498ac1fc2d3f3db211 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)