diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2024-01-07 00:30:17 +0100 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2024-01-07 00:30:17 +0100 |
| commit | f13e225192dd8294b48bcb429f09769055a4d973 (patch) | |
| tree | 8e50ac21da7988371c906817ea4699bb7726e80d /crates/parser/src | |
| parent | b87eea6fcfc3f319b7db0c10eafed45012538634 (diff) | |
feat: basic i32 loads/stores
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates/parser/src')
| -rw-r--r-- | crates/parser/src/conversion.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/parser/src/conversion.rs b/crates/parser/src/conversion.rs index 1b22af8..b9e674e 100644 --- a/crates/parser/src/conversion.rs +++ b/crates/parser/src/conversion.rs @@ -280,6 +280,8 @@ pub(crate) fn convert_memarg(memarg: wasmparser::MemArg) -> MemArg { MemArg { offset: memarg.offset, align: memarg.align, + align_max: memarg.max_align, + mem_addr: memarg.memory, } } |
