mirror of
https://github.com/espressif/mbedtls.git
synced 2025-06-19 21:28:38 +08:00
Fix IAR warning
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
parent
e4627f34da
commit
b6466c88df
@ -1559,9 +1559,9 @@ static mbedtls_mpi_uint mbedtls_int_div_int( mbedtls_mpi_uint u1,
|
||||
*/
|
||||
if( 0 == d || u1 >= d )
|
||||
{
|
||||
if (r != NULL) *r = ~0;
|
||||
if (r != NULL) *r = ~(mbedtls_mpi_uint)0u;
|
||||
|
||||
return ( ~0 );
|
||||
return ( ~(mbedtls_mpi_uint)0u );
|
||||
}
|
||||
|
||||
#if defined(MBEDTLS_HAVE_UDBL)
|
||||
@ -1700,7 +1700,7 @@ int mbedtls_mpi_div_mpi( mbedtls_mpi *Q, mbedtls_mpi *R, const mbedtls_mpi *A,
|
||||
for( i = n; i > t ; i-- )
|
||||
{
|
||||
if( X.p[i] >= Y.p[t] )
|
||||
Z.p[i - t - 1] = ~0;
|
||||
Z.p[i - t - 1] = ~(mbedtls_mpi_uint)0u;
|
||||
else
|
||||
{
|
||||
Z.p[i - t - 1] = mbedtls_int_div_int( X.p[i], X.p[i - 1],
|
||||
|
Loading…
x
Reference in New Issue
Block a user