Commit 775e4bc4 authored by Fabian Bauer's avatar Fabian Bauer
Browse files

minor: comment

parent 244f515f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -803,7 +803,7 @@ void Copy_Scale_sig_16_32_no_sat(
        {
            // y[i] = L_mult0(x[i], L_tmp);
            y[i] = W_extract_l( W_mult_32_16( L_tmp, x[i] ) );
            move32(); /* saturation can occur here */
            move32(); /* Overflow can occur here */
        }
        return;
    }
@@ -822,7 +822,7 @@ void Copy_Scale_sig_16_32_no_sat(
    {
        // y[i] = L_mult0(x[i], L_tmp);
        y[i] = W_extract_l( W_mult_32_16( L_tmp, x[i] ) );
        move32(); /* saturation can occur here */
        move32(); /* Overflow can occur here */
    }
#endif
}