Loading lib_com/basop_util.c +5 −4 Original line number Diff line number Diff line Loading @@ -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; Loading Loading
lib_com/basop_util.c +5 −4 Original line number Diff line number Diff line Loading @@ -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; Loading