polarssl: fix build without POLARSSL_HAVE_ASM

This fixes building polarssl for architectures without assembly code or
when POLARSSL_HAVE_ASM is not defined.

This has been done in upstream commit a755ca1bbe, but somehow the
generic version has been missed in gnuk's version.
This commit is contained in:
Aurelien Jarno
2017-10-12 22:02:19 +02:00
committed by NIIBE Yutaka
parent ad704edc4e
commit 209d459d09

View File

@@ -811,8 +811,8 @@
#else
#define MULADDC_INIT \
{ \
t_int s0, s1, b0, b1; \
t_int r0, r1, rx, ry; \
t_uint s0, s1, b0, b1; \
t_uint r0, r1, rx, ry; \
b0 = ( b << biH ) >> biH; \
b1 = ( b >> biH );