mirror of git://sourceware.org/git/glibc.git
m68k/cf: add __sqrt*_finite aliases
This commit is contained in:
parent
0ea4e188a6
commit
f2d9d9095c
|
@ -1,5 +1,8 @@
|
||||||
2011-10-23 Andreas Schwab <schwab@linux-m68k.org>
|
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_exp.c (FUNC_FINITE): Define.
|
||||||
* sysdeps/m68k/m680x0/fpu/e_expf.c (FUNC_FINITE): Define.
|
* sysdeps/m68k/m680x0/fpu/e_expf.c (FUNC_FINITE): Define.
|
||||||
* sysdeps/m68k/m680x0/fpu/e_expl.c (FUNC_FINITE): Define.
|
* sysdeps/m68k/m680x0/fpu/e_expl.c (FUNC_FINITE): Define.
|
||||||
|
|
|
@ -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.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
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));
|
asm ("fdsqrt.d %1,%0" : "=f" (x) : "fm" (x));
|
||||||
return x;
|
return x;
|
||||||
}
|
}
|
||||||
|
strong_alias (__ieee754_sqrt, __sqrt_finite)
|
||||||
|
|
|
@ -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.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
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));
|
asm ("fssqrt.s %1,%0" : "=f" (result) : "dm" (x));
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
strong_alias (__ieee754_sqrtf, __sqrtf_finite)
|
||||||
|
|
Loading…
Reference in New Issue