Loading lib_dec/hq_lr_dec.c +2 −2 Original line number Diff line number Diff line Loading @@ -264,9 +264,9 @@ void hq_lr_dec( exp = sub( exp, 30 ); #ifdef FIX_1348_OVERFLOW #ifdef BASOP_NOGLOB Ep_fx[i] = L_shl_o( L_tmp, sub( exp, 6 ), &Overflow ); /* Q -6 */ Ep_fx[i] = L_shl_o( L_tmp, s_max( sub( exp, 6 ), -31 ), &Overflow ); /* Q -6 */ #else Ep_fx[i] = L_shl( L_tmp, sub( exp, 6 ) ); /* Q -6 */ Ep_fx[i] = L_shl( L_tmp, s_max( sub( exp, 6 ), -31 ) ); /* Q -6 */ #endif #else Ep_fx[i] = L_shl( L_tmp, sub( exp, 6 ) ); /* Q -6 */ Loading Loading
lib_dec/hq_lr_dec.c +2 −2 Original line number Diff line number Diff line Loading @@ -264,9 +264,9 @@ void hq_lr_dec( exp = sub( exp, 30 ); #ifdef FIX_1348_OVERFLOW #ifdef BASOP_NOGLOB Ep_fx[i] = L_shl_o( L_tmp, sub( exp, 6 ), &Overflow ); /* Q -6 */ Ep_fx[i] = L_shl_o( L_tmp, s_max( sub( exp, 6 ), -31 ), &Overflow ); /* Q -6 */ #else Ep_fx[i] = L_shl( L_tmp, sub( exp, 6 ) ); /* Q -6 */ Ep_fx[i] = L_shl( L_tmp, s_max( sub( exp, 6 ), -31 ) ); /* Q -6 */ #endif #else Ep_fx[i] = L_shl( L_tmp, sub( exp, 6 ) ); /* Q -6 */ Loading