mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 18:15:40 +01:00
parent
cdea97c1c3
commit
7c5fcdc17a
@ -1,5 +1,11 @@
|
|||||||
mbed TLS ChangeLog (Sorted per branch, date)
|
mbed TLS ChangeLog (Sorted per branch, date)
|
||||||
|
|
||||||
|
= mbed TLS 2.2.0 released 2015-10-xx
|
||||||
|
|
||||||
|
Bugfix
|
||||||
|
* Fix failures in MPI on Sparc(64) due to use of bad assembly code.
|
||||||
|
Found by Kurt Danielson. #292
|
||||||
|
|
||||||
= mbed TLS 2.1.2 released 2015-10-06
|
= mbed TLS 2.1.2 released 2015-10-06
|
||||||
|
|
||||||
Security
|
Security
|
||||||
|
@ -412,10 +412,11 @@
|
|||||||
#endif /* PPC32 */
|
#endif /* PPC32 */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The Sparc64 assembly is reported to be broken.
|
* The Sparc(64) assembly is reported to be broken.
|
||||||
* Disable it for now, until we're able to fix it.
|
* Disable it for now, until we're able to fix it.
|
||||||
*/
|
*/
|
||||||
#if 0 && defined(__sparc__) && defined(__sparc64__)
|
#if 0 && defined(__sparc__)
|
||||||
|
#if defined(__sparc64__)
|
||||||
|
|
||||||
#define MULADDC_INIT \
|
#define MULADDC_INIT \
|
||||||
asm( \
|
asm( \
|
||||||
@ -446,9 +447,8 @@
|
|||||||
: "g1", "o0", "o1", "o2", "o3", "o4", \
|
: "g1", "o0", "o1", "o2", "o3", "o4", \
|
||||||
"o5" \
|
"o5" \
|
||||||
);
|
);
|
||||||
#endif /* SPARCv9 */
|
|
||||||
|
|
||||||
#if defined(__sparc__) && !defined(__sparc64__)
|
#else /* __sparc64__ */
|
||||||
|
|
||||||
#define MULADDC_INIT \
|
#define MULADDC_INIT \
|
||||||
asm( \
|
asm( \
|
||||||
@ -480,7 +480,8 @@
|
|||||||
"o5" \
|
"o5" \
|
||||||
);
|
);
|
||||||
|
|
||||||
#endif /* SPARCv8 */
|
#endif /* __sparc64__ */
|
||||||
|
#endif /* __sparc__ */
|
||||||
|
|
||||||
#if defined(__microblaze__) || defined(microblaze)
|
#if defined(__microblaze__) || defined(microblaze)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user