diff options
author | Wojciech Kosior <kwojtus@protonmail.com> | 2020-12-29 19:50:56 +0100 |
---|---|---|
committer | Wojciech Kosior <kwojtus@protonmail.com> | 2020-12-29 19:50:56 +0100 |
commit | 30a97274bde7a1988d80861ab9b381148f3d19a7 (patch) | |
tree | 101ce1aa9d9273de048a1f866f90cb22c151eed0 /tests/wasm_compile_loop | |
parent | ec9a0f72c6b7d74c9a7e2d4eaef44e26037eaca2 (diff) | |
download | AGH-engineering-thesis-30a97274bde7a1988d80861ab9b381148f3d19a7.tar.gz AGH-engineering-thesis-30a97274bde7a1988d80861ab9b381148f3d19a7.zip |
fix align values
Diffstat (limited to 'tests/wasm_compile_loop')
-rw-r--r-- | tests/wasm_compile_loop/instructions.wat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wasm_compile_loop/instructions.wat b/tests/wasm_compile_loop/instructions.wat index 02a75e0..03b1d26 100644 --- a/tests/wasm_compile_loop/instructions.wat +++ b/tests/wasm_compile_loop/instructions.wat @@ -21,5 +21,5 @@ (i32.const 10)))) ;; write computed sum (55 in dec, 37 in hex) at MEMORY_BOTTOM_ADDR - (i32.store offset=0x0 align=2)) + (i32.store offset=0x0 align=4)) (export "main" (func $main))) |