mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 10:55:38 +01:00
Disable broken Sparc64 bn_mul assembly
This commit is contained in:
parent
725e7f4942
commit
3135725670
@ -54,6 +54,7 @@ Bugfix
|
||||
* Fix possible miscomputation of the premaster secret with DHE-PSK key
|
||||
exchange that caused some handshakes to fail with other implementations.
|
||||
(Failure rate <= 1/255 with common DHM moduli.)
|
||||
* Disable broken Sparc64 bn_mul assembly (found by Florian Obser).
|
||||
|
||||
= PolarSSL 1.3.7 released on 2014-05-02
|
||||
Features
|
||||
|
@ -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