mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-11 20:21:11 +00:00
Add __umodsi3 to target symbol map in aot_reloc_arm.c (#793)
The symbol _umodsi3 may be used by AOT file generated with "wamrc --target=armv7".
This commit is contained in:
parent
3dff80157b
commit
808ad2e4f1
|
@ -17,6 +17,7 @@ void __umoddi3();
|
|||
void __divsi3();
|
||||
void __udivsi3();
|
||||
void __modsi3();
|
||||
void __umodsi3();
|
||||
void __udivmoddi4();
|
||||
void __clzsi2();
|
||||
void __fixsfdi();
|
||||
|
@ -68,6 +69,7 @@ static SymbolMap target_sym_map[] = {
|
|||
REG_SYM(__divsi3),
|
||||
REG_SYM(__udivsi3),
|
||||
REG_SYM(__modsi3),
|
||||
REG_SYM(__umodsi3),
|
||||
REG_SYM(__udivmoddi4),
|
||||
REG_SYM(__clzsi2),
|
||||
REG_SYM(__fixsfdi),
|
||||
|
|
Loading…
Reference in New Issue
Block a user