We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc8f70c commit 191e4a8Copy full SHA for 191e4a8
1 file changed
core/iwasm/aot/arch/aot_reloc_arm.c
@@ -37,6 +37,9 @@ void __aeabi_idivmod();
37
void __aeabi_l2d();
38
void __aeabi_l2f();
39
void __aeabi_ldivmod();
40
+void __aeabi_memcpy();
41
+void __aeabi_memmove();
42
+void __aeabi_memset();
43
void __aeabi_uidiv();
44
void __aeabi_uidivmod();
45
void __aeabi_ul2d();
@@ -120,6 +123,9 @@ static SymbolMap target_sym_map[] = {
120
123
REG_SYM(__aeabi_l2d),
121
124
REG_SYM(__aeabi_l2f),
122
125
REG_SYM(__aeabi_ldivmod),
126
+ REG_SYM(__aeabi_memcpy),
127
+ REG_SYM(__aeabi_memmove),
128
+ REG_SYM(__aeabi_memset),
129
REG_SYM(__aeabi_uidiv),
130
REG_SYM(__aeabi_uidivmod),
131
REG_SYM(__aeabi_ul2d),
0 commit comments