mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-30 17:31:03 +00:00
- Made switch for ARM thumb assembly. Still has to be added!
This commit is contained in:
parent
dceecd80f7
commit
a2713a327c
|
@ -498,6 +498,8 @@
|
|||
|
||||
#if defined(__arm__)
|
||||
|
||||
#if !defined(__thumb__)
|
||||
|
||||
#define MULADDC_INIT \
|
||||
asm( "ldr r0, %0 " :: "m" (s)); \
|
||||
asm( "ldr r1, %0 " :: "m" (d)); \
|
||||
|
@ -519,6 +521,8 @@
|
|||
asm( "str r0, %0 " : "=m" (s) :: \
|
||||
"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7" );
|
||||
|
||||
#endif /* Thumb */
|
||||
|
||||
#endif /* ARMv3 */
|
||||
|
||||
#if defined(__alpha__)
|
||||
|
|
Loading…
Reference in a new issue