mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-23 15:25:29 +00:00
Merge remote-tracking branch 'origin/pr/2358' into mbedtls-2.16
This commit is contained in:
commit
1892b3b6e2
|
@ -11,6 +11,11 @@ Bugfix
|
||||||
previously lead to a stack overflow on constrained targets.
|
previously lead to a stack overflow on constrained targets.
|
||||||
* Add `MBEDTLS_SELF_TEST` for the mbedtls_self_test functions
|
* Add `MBEDTLS_SELF_TEST` for the mbedtls_self_test functions
|
||||||
in the header files, which missed the precompilation check. #971
|
in the header files, which missed the precompilation check. #971
|
||||||
|
* Fix clobber list in MIPS assembly for large integer multiplication.
|
||||||
|
Previously, this could lead to functionally incorrect assembly being
|
||||||
|
produced by some optimizing compilers, showing up as failures in
|
||||||
|
e.g. RSA or ECC signature operations. Reported in #1722, fix suggested
|
||||||
|
by Aurelien Jarno and submitted by Jeffrey Martin.
|
||||||
|
|
||||||
= mbed TLS 2.16.0 branch released 2018-12-21
|
= mbed TLS 2.16.0 branch released 2018-12-21
|
||||||
|
|
||||||
|
|
|
@ -750,7 +750,7 @@
|
||||||
"sw $10, %2 \n\t" \
|
"sw $10, %2 \n\t" \
|
||||||
: "=m" (c), "=m" (d), "=m" (s) \
|
: "=m" (c), "=m" (d), "=m" (s) \
|
||||||
: "m" (s), "m" (d), "m" (c), "m" (b) \
|
: "m" (s), "m" (d), "m" (c), "m" (b) \
|
||||||
: "$9", "$10", "$11", "$12", "$13", "$14", "$15" \
|
: "$9", "$10", "$11", "$12", "$13", "$14", "$15", "lo", "hi" \
|
||||||
);
|
);
|
||||||
|
|
||||||
#endif /* MIPS */
|
#endif /* MIPS */
|
||||||
|
|
Loading…
Reference in a new issue