1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

- Fixed compiler error on 64-bit systems not using GCC

- t_udbl optimization now also works on platforms that did not define POLARSSL_HAVE_LONGLONG
This commit is contained in:
Paul Bakker
2012-01-20 10:08:14 +00:00
parent ec1b9842c4
commit cf0360a14e
2 changed files with 6 additions and 3 deletions

View File

@ -1101,7 +1101,7 @@ int mpi_div_mpi( mpi *Q, mpi *R, const mpi *A, const mpi *B )
Z.p[i - t - 1] = ~0;
else
{
#if defined(POLARSSL_HAVE_LONGLONG)
#if defined(t_udbl)
t_udbl r;
r = (t_udbl) X.p[i] << biL;