mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-26 05:31:09 +00:00
Merge remote-tracking branch 'public/pr/1732' into mbedtls-2.7
This commit is contained in:
commit
83c7ecbf5b
|
@ -8,6 +8,8 @@ Bugfix
|
||||||
* Fix for redefinition of _WIN32_WINNT to avoid overriding a definition
|
* Fix for redefinition of _WIN32_WINNT to avoid overriding a definition
|
||||||
used by user applications. Found and fixed by Fabio Alessandrelli.
|
used by user applications. Found and fixed by Fabio Alessandrelli.
|
||||||
* Fix braces in mbedtls_memory_buffer_alloc_status(). Found by sbranden, #552.
|
* Fix braces in mbedtls_memory_buffer_alloc_status(). Found by sbranden, #552.
|
||||||
|
* Fix an issue with MicroBlaze support in bn_mul.h which was causing the
|
||||||
|
build to fail. Found by zv-io. Fixes #1651.
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
* Support TLS testing in out-of-source builds using cmake. Fixes #1193.
|
* Support TLS testing in out-of-source builds using cmake. Fixes #1193.
|
||||||
|
|
|
@ -521,7 +521,7 @@
|
||||||
"swi r3, %2 \n\t" \
|
"swi r3, %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) \
|
||||||
: "r3", "r4" "r5", "r6", "r7", "r8", \
|
: "r3", "r4", "r5", "r6", "r7", "r8", \
|
||||||
"r9", "r10", "r11", "r12", "r13" \
|
"r9", "r10", "r11", "r12", "r13" \
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue