summaryrefslogtreecommitdiff
path: root/libm/powerpc/s_copysign.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2005-03-06 07:11:53 +0000
committerEric Andersen <andersen@codepoet.org>2005-03-06 07:11:53 +0000
commitc4e44e97f8562254d9da898f6ed7e6cb4d8a3ce4 (patch)
tree6c61f83ac5b94085222b3eda8d731309d61be99b /libm/powerpc/s_copysign.c
parentd4fad9c64ee518be51ecb40662af69b405a49556 (diff)
Trim off whitespace
Diffstat (limited to 'libm/powerpc/s_copysign.c')
-rw-r--r--libm/powerpc/s_copysign.c6
1 files changed, 3 insertions, 3 deletions
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;
}