We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02c2550 commit 69446f4Copy full SHA for 69446f4
core/iwasm/aot/arch/aot_reloc_thumb.c
@@ -52,6 +52,10 @@ void __aeabi_idivmod(void);
52
void __aeabi_l2d(void);
53
void __aeabi_l2f(void);
54
void __aeabi_ldivmod(void);
55
+void __aeabi_memclr(void);
56
+void __aeabi_memcpy(void);
57
+void __aeabi_memmove(void);
58
+void __aeabi_memset(void);
59
void __aeabi_llsl(void);
60
void __aeabi_llsr(void);
61
void __aeabi_lmul(void);
@@ -171,6 +175,10 @@ static SymbolMap target_sym_map[] = {
171
175
REG_SYM(__aeabi_l2d),
172
176
REG_SYM(__aeabi_l2f),
173
177
REG_SYM(__aeabi_ldivmod),
178
+ REG_SYM(__aeabi_memclr),
179
+ REG_SYM(__aeabi_memcpy),
180
+ REG_SYM(__aeabi_memmove),
181
+ REG_SYM(__aeabi_memset),
174
182
REG_SYM(__aeabi_llsl),
183
REG_SYM(__aeabi_llsr),
184
REG_SYM(__aeabi_lmul),
0 commit comments