]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
Missing return added.
authorToni Wilen <twilen@winuae.net>
Sat, 30 Jun 2018 10:04:48 +0000 (13:04 +0300)
committerToni Wilen <twilen@winuae.net>
Sat, 30 Jun 2018 10:04:48 +0000 (13:04 +0300)
softfloat/softfloat.cpp

index 2b47d0e7f3894766498dd693ddb5e5436a7998f8..59f9e118b609f67c029c03fb37d48d82db9ee331 100644 (file)
@@ -3418,7 +3418,7 @@ floatx80 floatx80_move( floatx80 a, float_status *status )
     }
     if ( aExp == 0 ) {
         if ( aSig == 0 ) return a;
-        normalizeRoundAndPackFloatx80( status->floatx80_rounding_precision, aSign, aExp, aSig, 0, status );
+        return normalizeRoundAndPackFloatx80( status->floatx80_rounding_precision, aSign, aExp, aSig, 0, status );
     }
     return roundAndPackFloatx80( status->floatx80_rounding_precision, aSign, aExp, aSig, 0, status );
 }