summary refs log tree commit diff
path: root/sysdeps/i386/fpu/s_scalbnl.S
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@redhat.com>2014-06-25 08:47:13 +0530
committerSiddhesh Poyarekar <siddhesh@redhat.com>2014-06-25 08:47:13 +0530
commit911422da02cfb683f9d97c46e7a4049449ec1a23 (patch)
treecaefccb492117744529606303b47f8df52b328f1 /sysdeps/i386/fpu/s_scalbnl.S
parent0d749bbebad48b4c673a29af03d5c5dd151881de (diff)
downloadglibc-911422da02cfb683f9d97c46e7a4049449ec1a23.tar.gz
glibc-911422da02cfb683f9d97c46e7a4049449ec1a23.tar.xz
glibc-911422da02cfb683f9d97c46e7a4049449ec1a23.zip
Add compat symbols for scalb* in i386
Bring back symbols into libc.so for scalb* functions.  They are no
longer used but unfortunately they're now part of the ABI.
Diffstat (limited to 'sysdeps/i386/fpu/s_scalbnl.S')
-rw-r--r--sysdeps/i386/fpu/s_scalbnl.S5
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/i386/fpu/s_scalbnl.S b/sysdeps/i386/fpu/s_scalbnl.S
index 8f65de41a8..8da0b009e0 100644
--- a/sysdeps/i386/fpu/s_scalbnl.S
+++ b/sysdeps/i386/fpu/s_scalbnl.S
@@ -17,3 +17,8 @@ ENTRY(__scalbnl)
 END (__scalbnl)
 weak_alias (__scalbnl, scalbnl)
 strong_alias (__scalbnl, __scalblnl)
+
+#include <shlib-compat.h>
+#if SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_20)
+compat_symbol (libc, __scalbnl, scalblnl, GLIBC_2_1);
+#endif