Skip to content

Commit 69446f4

Browse files
authored
Add missing functions from thumb arch (#4718)
Signed-off-by: Krisztian Szilvasi <34309983+kr-t@users.noreply.github.com>
1 parent 02c2550 commit 69446f4

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

core/iwasm/aot/arch/aot_reloc_thumb.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ void __aeabi_idivmod(void);
5252
void __aeabi_l2d(void);
5353
void __aeabi_l2f(void);
5454
void __aeabi_ldivmod(void);
55+
void __aeabi_memclr(void);
56+
void __aeabi_memcpy(void);
57+
void __aeabi_memmove(void);
58+
void __aeabi_memset(void);
5559
void __aeabi_llsl(void);
5660
void __aeabi_llsr(void);
5761
void __aeabi_lmul(void);
@@ -171,6 +175,10 @@ static SymbolMap target_sym_map[] = {
171175
REG_SYM(__aeabi_l2d),
172176
REG_SYM(__aeabi_l2f),
173177
REG_SYM(__aeabi_ldivmod),
178+
REG_SYM(__aeabi_memclr),
179+
REG_SYM(__aeabi_memcpy),
180+
REG_SYM(__aeabi_memmove),
181+
REG_SYM(__aeabi_memset),
174182
REG_SYM(__aeabi_llsl),
175183
REG_SYM(__aeabi_llsr),
176184
REG_SYM(__aeabi_lmul),

0 commit comments

Comments
 (0)