mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-06-01 05:10:18 +00:00
Backport #1949 into mbedtls-2.7
Signed-off-by: Jeffrey Martin <Jeffrey_Martin@rapid7.com>
This commit is contained in:
parent
78f040cf33
commit
44fbf91f01
|
@ -5,6 +5,10 @@ mbed TLS ChangeLog (Sorted per branch, date)
|
||||||
Bugfix
|
Bugfix
|
||||||
* Run the AD too long test only if MBEDTLS_CCM_ALT is not defined.
|
* Run the AD too long test only if MBEDTLS_CCM_ALT is not defined.
|
||||||
Raised as a comment in #1996.
|
Raised as a comment in #1996.
|
||||||
|
* Extend register cleanup needed on MIPS assembly optimizations. Adds hi, lo
|
||||||
|
registers hints to the compiler for usage with the embedded MIPS assembly.
|
||||||
|
Reported in #1722, fix suggested by @aurel32 and submitted
|
||||||
|
by Jeffrey Martin, #1949.
|
||||||
|
|
||||||
= mbed TLS 2.7.9 branch released 2018-12-21
|
= mbed TLS 2.7.9 branch released 2018-12-21
|
||||||
|
|
||||||
|
|
|
@ -734,7 +734,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