mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-11-27 18:11:21 +00:00
Compare commits
3 Commits
48ef8f7859
...
4c6b0dab59
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4c6b0dab59 | ||
|
|
418be9dfee | ||
|
|
729eb11d17 |
|
|
@ -52,6 +52,10 @@ void __aeabi_idivmod(void);
|
|||
void __aeabi_l2d(void);
|
||||
void __aeabi_l2f(void);
|
||||
void __aeabi_ldivmod(void);
|
||||
void __aeabi_memclr(void);
|
||||
void __aeabi_memcpy(void);
|
||||
void __aeabi_memmove(void);
|
||||
void __aeabi_memset(void);
|
||||
void __aeabi_llsl(void);
|
||||
void __aeabi_llsr(void);
|
||||
void __aeabi_lmul(void);
|
||||
|
|
@ -171,6 +175,10 @@ static SymbolMap target_sym_map[] = {
|
|||
REG_SYM(__aeabi_l2d),
|
||||
REG_SYM(__aeabi_l2f),
|
||||
REG_SYM(__aeabi_ldivmod),
|
||||
REG_SYM(__aeabi_memclr),
|
||||
REG_SYM(__aeabi_memcpy),
|
||||
REG_SYM(__aeabi_memmove),
|
||||
REG_SYM(__aeabi_memset),
|
||||
REG_SYM(__aeabi_llsl),
|
||||
REG_SYM(__aeabi_llsr),
|
||||
REG_SYM(__aeabi_lmul),
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
This document is intended to describe the current status of WebAssembly proposals and WASI proposals in WAMR.
|
||||
|
||||
Only track proposals that are followed in the [WebAssembly proposals](https://github.com/WebAssembly/proposals) and [WASI proposals](https://github.com/WebAssembly/WASI/blob/main/Proposals.md).
|
||||
Only track proposals that are followed in the [WebAssembly proposals](https://github.com/WebAssembly/proposals) and [WASI proposals](https://github.com/WebAssembly/WASI/blob/main/docs/Proposals.md).
|
||||
|
||||
Normally, the document tracks proposals that are in phase 4. However, if a proposal in an earlier phase receives support, it will be added to the list below.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user