m68k/cf: add __sqrt*_finite aliases
authorAndreas Schwab <schwab@linux-m68k.org>
Sun, 23 Oct 2011 14:40:33 +0000 (16:40 +0200)
committerAndreas Schwab <schwab@linux-m68k.org>
Sun, 23 Oct 2011 14:40:53 +0000 (16:40 +0200)
ChangeLog.m68k
sysdeps/m68k/coldfire/fpu/e_sqrt.c
sysdeps/m68k/coldfire/fpu/e_sqrtf.c

index 69aa1ba..d7e03ef 100644 (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.
index a160308..b6c67e8 100644 (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)
index 7cfc0dd..e0481b8 100644 (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)