Commit 69344f49 authored by Fabian Bauer's avatar Fabian Bauer
Browse files

deactivate zero-mantissa-fix , 7FFF mantissa-fix still active

parent fe49c531
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2171,7 +2171,7 @@ Word16 maximum_exp_fx(
    {

        Word16 tmp = sub( exp_vec[j], exp_vec[ind] );
#if 1
#if 0
        if ( vec_fx[j] == 0 )
        {
            tmp = 0;
@@ -2184,8 +2184,8 @@ Word16 maximum_exp_fx(
        }
#endif
        /* if(vec[j] > vec[ind])                                                                    */
        /* if ( L_mac0_sat( L_shl_sat( L_deposit_l( vec_fx[j] ), tmp ), vec_fx[ind], -0x0001 ) > 0 ) */
        if ( GT_32( L_shr_sat( L_deposit_l( vec_fx[j] ), negate( tmp ) ), L_deposit_l( vec_fx[ind] ) ) )
        /* if ( GT_32( L_shl_sat( L_deposit_l( vec_fx[j] ), tmp ), L_deposit_l( vec_fx[ind] ) ) ) */
        if ( L_mac0_sat( L_shl_sat( L_deposit_l( vec_fx[j] ), tmp ), vec_fx[ind], -0x0001 ) > 0 )        
        {
            ind = j;
            move16();