mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-25 14:45:18 +00:00
Fix for bug introduced in backporting MPI MSVC fix
Some variables were being declared twice in int_div_int() due to an error in cherry-picking the commit from mbedtls-1.3
This commit is contained in:
parent
6901e50d81
commit
55bd7e450c
|
@ -1127,10 +1127,6 @@ static t_uint int_div_int(t_uint u1, t_uint u0, t_uint d, t_uint *r)
|
|||
|
||||
return (t_uint) quotient;
|
||||
#else
|
||||
const t_uint radix = 1 << biH;
|
||||
t_uint d0, d1, q0, q1, rAX, r0, quotient;
|
||||
t_uint u0_msw, u0_lsw;
|
||||
int s;
|
||||
|
||||
/*
|
||||
* Algorithm D, Section 4.3.1 - The Art of Computer Programming
|
||||
|
|
Loading…
Reference in a new issue