about summary refs log tree commit diff
path: root/sysdeps/powerpc/fpu/e_hypot.c
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@redhat.com>2011-09-15 11:16:03 +0200
committerAndreas Schwab <schwab@redhat.com>2011-09-15 15:35:38 +0200
commitedc121be8b53da57950daf6f42a619b5826f30b6 (patch)
treeca7d0771ba09d5797c396c5a4cacbd69dc134083 /sysdeps/powerpc/fpu/e_hypot.c
parentee4d03150a65018f367e3250887ec9c5b2133ce4 (diff)
downloadglibc-edc121be8b53da57950daf6f42a619b5826f30b6.tar.gz
glibc-edc121be8b53da57950daf6f42a619b5826f30b6.tar.xz
glibc-edc121be8b53da57950daf6f42a619b5826f30b6.zip
Fix PLT uses in libm on powerpc
Diffstat (limited to 'sysdeps/powerpc/fpu/e_hypot.c')
-rw-r--r--sysdeps/powerpc/fpu/e_hypot.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/powerpc/fpu/e_hypot.c b/sysdeps/powerpc/fpu/e_hypot.c
index 22bd56371e..afbcc18e9e 100644
--- a/sysdeps/powerpc/fpu/e_hypot.c
+++ b/sysdeps/powerpc/fpu/e_hypot.c
@@ -96,7 +96,7 @@ __ieee754_hypot (double x, double y)
     {
       x *= twoM600;
       y *= twoM600;
-      return sqrt (x * x + y * y) / twoM600;
+      return __ieee754_sqrt (x * x + y * y) / twoM600;
     }
   if (y < twoM500)
     {
@@ -104,14 +104,14 @@ __ieee754_hypot (double x, double y)
 	{
 	  x *= two1022;
 	  y *= two1022;
-	  return sqrt (x * x + y * y) / two1022;
+	  return __ieee754_sqrt (x * x + y * y) / two1022;
 	}
       else
 	{
 	  x *= two600;
 	  y *= two600;
-	  return sqrt (x * x + y * y) / two600;
+	  return __ieee754_sqrt (x * x + y * y) / two600;
 	}
     }
-  return sqrt (x * x + y * y);
+  return __ieee754_sqrt (x * x + y * y);
 }