mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 23:45:42 +01:00
Disable broken Sparc64 bn_mul assembly
This commit is contained in:
parent
877a0944ad
commit
03917bf7d5
@ -66,6 +66,7 @@ Bugfix
|
||||
* Fix preprocessor checks for bn_mul PPC asm (found by Barry K. Nathan).
|
||||
* Use \n\t rather than semicolons for bn_mul asm, since some assemblers
|
||||
interpret semicolons as comment delimiters (found by Barry K. Nathan).
|
||||
* Disable broken Sparc64 bn_mul assembly (found by Florian Obser).
|
||||
|
||||
= Version 1.2.10 released 2013-10-07
|
||||
Changes
|
||||
|
@ -409,7 +409,11 @@
|
||||
|
||||
#endif /* PPC32 */
|
||||
|
||||
#if defined(__sparc__) && defined(__sparc64__)
|
||||
/*
|
||||
* The Sparc64 assembly is reported to be broken.
|
||||
* Disable it for now, until we're able to fix it.
|
||||
*/
|
||||
#if 0 && defined(__sparc__) && defined(__sparc64__)
|
||||
|
||||
#define MULADDC_INIT \
|
||||
asm( \
|
||||
|
Loading…
Reference in New Issue
Block a user