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

ISSUE #2160 MR 2459

parent ae176774
Loading
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -2584,15 +2584,16 @@ Word32 BASOP_Util_Add_Mant32Exp /* o : normalized result mantissa */
    shift = norm_l( a_m );
    a_m = L_shl( a_m, shift );
    a_e = sub( a_e, shift );

    shift = norm_l( b_m );
    b_m = L_shl( b_m, shift );
    b_e = sub( b_e, shift );

    if ( !a_m )
    {
        a_e = b_e;
        move16();
    }

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