]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
Fix accidentally commented line, NaN exponent part was not set.
authorToni Wilen <twilen@winuae.net>
Fri, 4 May 2018 18:37:06 +0000 (21:37 +0300)
committerToni Wilen <twilen@winuae.net>
Fri, 4 May 2018 18:37:06 +0000 (21:37 +0300)
softfloat/softfloat-specialize.h

index 69e741e5c263e2dcc7ea3e98ef07bd5f08abd10e..d7945090c6f6c84baa23c0e025ee9501fdc268e7 100644 (file)
@@ -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;
 }