mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-09 23:45:27 +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:
parent
be04673c49
commit
e63560470e
|
@ -28,6 +28,8 @@ Bugfix
|
||||||
* Fixed testing with out-of-source builds using cmake
|
* Fixed testing with out-of-source builds using cmake
|
||||||
* Fixed version-major intolerance in server
|
* Fixed version-major intolerance in server
|
||||||
* Fixed CMake symlinking on out-of-source builds
|
* Fixed CMake symlinking on out-of-source builds
|
||||||
|
* Bignum's MIPS-32 assembly was used on MIPS-64, causing chaos. (Found by
|
||||||
|
Alex Wilson.)
|
||||||
|
|
||||||
= Version 1.2.10 released 2013-10-07
|
= Version 1.2.10 released 2013-10-07
|
||||||
Changes
|
Changes
|
||||||
|
|
|
@ -770,7 +770,7 @@
|
||||||
);
|
);
|
||||||
#endif /* Alpha */
|
#endif /* Alpha */
|
||||||
|
|
||||||
#if defined(__mips__)
|
#if defined(__mips__) && !defined(__mips64__)
|
||||||
|
|
||||||
#define MULADDC_INIT \
|
#define MULADDC_INIT \
|
||||||
asm( \
|
asm( \
|
||||||
|
|
Loading…
Reference in a new issue