From 32999d63fd5b37d14972fc128502ad212df4f056 Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Thu, 22 May 2014 15:54:41 -0500 Subject: PowerPC: Remove unneeded copysign[f] macros This patch remove the unneeded copysign[f] macro from powerpc math_private.h, since they are already covered in generic version. --- sysdeps/powerpc/fpu/math_private.h | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'sysdeps/powerpc/fpu') diff --git a/sysdeps/powerpc/fpu/math_private.h b/sysdeps/powerpc/fpu/math_private.h index 1ec48810fa..b664be3f80 100644 --- a/sysdeps/powerpc/fpu/math_private.h +++ b/sysdeps/powerpc/fpu/math_private.h @@ -151,31 +151,4 @@ __ieee754_sqrtf (float __x) #endif /* defined _ARCH_PWR5X */ - -#if defined _ARCH_PWR6 - -# ifndef __copysign -# define __copysign(x, y) \ - ({ double __z; \ - __asm __volatile ( \ - " fcpsgn %0,%1,%2\n" \ - : "=f" (__z) \ - : "f" (y), "f" (x)); \ - __z; }) -# endif -# ifndef __copysignf -# define __copysignf(x, y) \ - ({ float __z; \ - float __x = x; \ - float __y = y; \ - __asm __volatile ( \ - " fcpsgn %0,%1,%2\n" \ - " frsp %0,%0\n" \ - : "=f" (__z) \ - : "f" (__y), "f" (__x));\ - __z; }) -# endif - -#endif /* defined _ARCH_PWR6 */ - #endif /* _PPC_MATH_PRIVATE_H_ */ -- cgit 1.4.1