Commit 067c7719 authored by vaillancour's avatar vaillancour
Browse files

fix a linux assert

parent 53507dd2
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -865,7 +865,11 @@ Word16 ApplyFdCng (
            L_tmp_exp = add(L_tmp_exp,-7); /*->Q16, L_tmp_exp */
            L_tmp_exp = add(L_tmp_exp,31-16); /*->Q31, L_tmp_exp*/

#ifdef BASOP_NOGLOB /* Critical Carry/Overflow */
            st->cngTDLevel = round_fx_o(Sqrt32(L_tmp, &L_tmp_exp), &Overflow);
#else
            st->cngTDLevel = round_fx(Sqrt32(L_tmp, &L_tmp_exp));
#endif
            st->cngTDLevel_e = L_tmp_exp;
            move16();
#endif