Commit bb651fe6 authored by JÜRGEN Gerstacker's avatar JÜRGEN Gerstacker
Browse files

ISSUE #2160 MR 2459

parent a2247bbe
Loading
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -2583,11 +2583,15 @@ Word32 BASOP_Util_Add_Mant32Exp /* o : normalized result mantissa */

    shift = norm_l( a_m );
    a_m = L_shl( a_m, shift );
    if ( a_m ) {
        a_e = sub( a_e, shift );
    }

    shift = norm_l( b_m );
    b_m = L_shl( b_m, shift );
    if ( b_m ) {
        b_e = sub( b_e, shift );
    }

    if ( !a_m )
    {