From: Toni Wilen Date: Sat, 30 Jun 2018 10:04:48 +0000 (+0300) Subject: Missing return added. X-Git-Tag: 4010~49 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=db788eee3975881cd1d99ac0bcd767e9a7ea8cce;p=francis%2Fwinuae.git Missing return added. --- diff --git a/softfloat/softfloat.cpp b/softfloat/softfloat.cpp index 2b47d0e7..59f9e118 100644 --- a/softfloat/softfloat.cpp +++ b/softfloat/softfloat.cpp @@ -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 ); }