m68k/cf: add __sqrt*_finite aliases

This commit is contained in:
Andreas Schwab 2011-10-23 16:40:33 +02:00
parent 0ea4e188a6
commit f2d9d9095c
3 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2011-10-23 Andreas Schwab <schwab@linux-m68k.org>
* sysdeps/m68k/coldfire/fpu/e_sqrt.c: Add __sqrt_finite alias.
* sysdeps/m68k/coldfire/fpu/e_sqrtf.c: Add __sqrtf_finite alias.
* sysdeps/m68k/m680x0/fpu/e_exp.c (FUNC_FINITE): Define.
* sysdeps/m68k/m680x0/fpu/e_expf.c (FUNC_FINITE): Define.
* sysdeps/m68k/m680x0/fpu/e_expl.c (FUNC_FINITE): Define.

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2006 Free Software Foundation, Inc.
/* Copyright (C) 2006, 2011 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -22,3 +22,4 @@ __ieee754_sqrt (double x)
asm ("fdsqrt.d %1,%0" : "=f" (x) : "fm" (x));
return x;
}
strong_alias (__ieee754_sqrt, __sqrt_finite)

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2006 Free Software Foundation, Inc.
/* Copyright (C) 2006, 2011 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -23,3 +23,4 @@ __ieee754_sqrtf (float x)
asm ("fssqrt.s %1,%0" : "=f" (result) : "dm" (x));
return result;
}
strong_alias (__ieee754_sqrtf, __sqrtf_finite)