From: Toni Wilen Date: Fri, 4 May 2018 18:37:06 +0000 (+0300) Subject: Fix accidentally commented line, NaN exponent part was not set. X-Git-Tag: 4000~78 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=7eff8bf44b248ecf4981baf3323b20f4514b4bf3;p=francis%2Fwinuae.git Fix accidentally commented line, NaN exponent part was not set. --- diff --git a/softfloat/softfloat-specialize.h b/softfloat/softfloat-specialize.h index 69e741e5..d7945090 100644 --- a/softfloat/softfloat-specialize.h +++ b/softfloat/softfloat-specialize.h @@ -307,7 +307,8 @@ static inline floatx80 commonNaNToFloatx80(commonNaNT a, float_status *status) z.low = LIT64( 0x4000000000000000 ) | ( a.high>>1 ); #else z.low = LIT64( 0xC000000000000000 ) | ( a.high>>1 ); -#endif z.high = ( ( (int16_t) a.sign )<<15 ) | 0x7FFF; +#endif + z.high = ( ( (int16_t) a.sign )<<15 ) | 0x7FFF; return z; }