alpha: Fix compat version number for nearbyintl

This commit is contained in:
Richard Henderson 2012-08-13 18:17:45 -07:00
parent ba6cba9eec
commit 2e33ecdf8c
2 changed files with 8 additions and 3 deletions

View file

@ -1,9 +1,14 @@
2012-08-13 Richard Henderson <rth@twiddle.net>
* sysdeps/alpha/fpu/s_nearbyint.c (nearbyintl): Do compat
with GLIBC_2_1.
2012-08-08 Joseph Myers <joseph@codesourcery.com>
* sysdeps/unix/sysv/linux/alpha/kernel-features.h
(__ASSUME_TGKILL): Remove.
2012-08-08 Richard Henderson <rth@redhat.com>
2012-08-08 Richard Henderson <rth@twiddle.net>
* sysdeps/unix/sysv/linux/alpha/kernel-features.h
(__ASSUME_IEEE_RAISE_EXCEPTION): Remove.

View file

@ -43,6 +43,6 @@ weak_alias (__nearbyint, nearbyint)
strong_alias (__nearbyint, __nearbyintl)
weak_alias (__nearbyint, nearbyintl)
#endif
#if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
compat_symbol (libm, __nearbyint, nearbyintl, GLIBC_2_0);
#if LONG_DOUBLE_COMPAT(libm, GLIBC_2_1)
compat_symbol (libm, __nearbyint, nearbyintl, GLIBC_2_1);
#endif