mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-03-10 07:12:56 +00:00
Don't try to use MIPS32 asm macros on MIPS64
The MIPS32 bn_mul asm code causes segfaults on MIPS64 and failing tests. Until someone has time to fix this up, MIPS64 platforms should fall back to the C implementation (which works fine).
This commit is contained in:
committed by
Manuel Pégourié-Gonnard
parent
9a6e93e7a4
commit
7349142ce7
@@ -770,7 +770,7 @@
|
||||
);
|
||||
#endif /* Alpha */
|
||||
|
||||
#if defined(__mips__)
|
||||
#if defined(__mips__) && !defined(__mips64__)
|
||||
|
||||
#define MULADDC_INIT \
|
||||
asm( \
|
||||
|
||||
Reference in New Issue
Block a user