diff options
Diffstat (limited to 'libm/powerpc/s_copysign.c')
-rw-r--r-- | libm/powerpc/s_copysign.c | 6 |
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; } |