From c4e44e97f8562254d9da898f6ed7e6cb4d8a3ce4 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sun, 6 Mar 2005 07:11:53 +0000 Subject: Trim off whitespace --- libm/powerpc/s_copysign.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libm/powerpc/s_copysign.c') diff --git a/libm/powerpc/s_copysign.c b/libm/powerpc/s_copysign.c index 18e91998a..d3fb5f40b 100644 --- a/libm/powerpc/s_copysign.c +++ b/libm/powerpc/s_copysign.c @@ -45,12 +45,12 @@ double copysign ( double arg2, double arg1 ) /******************************************************************************* * No need to flush NaNs out. * *******************************************************************************/ - + x.dbl = arg1; y.dbl = arg2; - + y.hex.high = y.hex.high & 0x7FFFFFFF; y.hex.high = ( y.hex.high | ( x.hex.high & dSgnMask ) ); - + return y.dbl; } -- cgit v1.2.3