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

ISSUE #2160 MR 2459

parent 3fe45f3a
Loading
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -2581,12 +2581,18 @@ Word32 BASOP_Util_Add_Mant32Exp /* o : normalized result mantissa */
       account all shift operations.
    */

    shift = norm_l( a_m );
    a_m = L_shl( a_m, shift );
    a_e = sub( a_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;