]> sourceware.org Git - glibc.git/commitdiff
alpha: Use builtins for copysign
authorRichard Henderson <rth@twiddle.net>
Fri, 15 Jun 2012 19:06:44 +0000 (12:06 -0700)
committerRichard Henderson <rth@twiddle.net>
Fri, 15 Jun 2012 19:06:44 +0000 (12:06 -0700)
sysdeps/alpha/fpu/s_copysign.c
sysdeps/alpha/fpu/s_copysignf.c

index 51a5c645a145a16c9d1944fc5bf3a0915505b877..b01202772bf8dbe0165984d5cc0ff46d571cb9b8 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000, 2006 Free Software Foundation, Inc.
+/* Copyright (C) 2000, 2006, 2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Richard Henderson.
 
@@ -22,8 +22,7 @@
 double
 __copysign (double x, double y)
 {
-  __asm ("cpys %1, %2, %0" : "=f" (x) : "f" (y), "f" (x));
-  return x;
+  return __builtin_copysign (x, y);
 }
 
 weak_alias (__copysign, copysign)
index 2ccd52e0b8006f6f391aa3a794209c2310335532..c30494989961c47512cbbf6bb4609a08f21c25b4 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000 Free Software Foundation, Inc.
+/* Copyright (C) 2000, 2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Richard Henderson.
 
@@ -21,8 +21,7 @@
 float
 __copysignf (float x, float y)
 {
-  __asm ("cpys %1, %2, %0" : "=f" (x) : "f" (y), "f" (x));
-  return x;
+  return __builtin_copysignf (x, y);
 }
 
 weak_alias (__copysignf, copysignf)
This page took 0.045462 seconds and 5 git commands to generate.