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