Add missing _finite aliases

This commit is contained in:
Andreas Schwab 2011-10-23 15:20:16 +02:00
parent fb24de5932
commit 246ad57ad6
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-10-23 Andreas Schwab <schwab@linux-m68k.org>
* sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Add __jnl_finite and
__ynl_finite aliases.
2011-10-22 Ulrich Drepper <drepper@gmail.com>
* sysdeps/x86_64/fpu/libm-test-ulps: Update.

View File

@ -303,6 +303,7 @@ __ieee754_jnl (n, x)
else
return b;
}
strong_alias (__ieee754_jnl, __jnl_finite)
#ifdef __STDC__
long double
@ -409,3 +410,4 @@ __ieee754_ynl (n, x)
else
return -b;
}
strong_alias (__ieee754_ynl, __ynl_finite)