aboutsummaryrefslogtreecommitdiff
path: root/tests/wasm_compile_simple_module/instructions.wat
diff options
context:
space:
mode:
authorWojciech Kosior <kwojtus@protonmail.com>2020-12-29 19:50:56 +0100
committerWojciech Kosior <kwojtus@protonmail.com>2020-12-29 19:50:56 +0100
commit30a97274bde7a1988d80861ab9b381148f3d19a7 (patch)
tree101ce1aa9d9273de048a1f866f90cb22c151eed0 /tests/wasm_compile_simple_module/instructions.wat
parentec9a0f72c6b7d74c9a7e2d4eaef44e26037eaca2 (diff)
downloadAGH-engineering-thesis-30a97274bde7a1988d80861ab9b381148f3d19a7.tar.gz
AGH-engineering-thesis-30a97274bde7a1988d80861ab9b381148f3d19a7.zip
fix align values
Diffstat (limited to 'tests/wasm_compile_simple_module/instructions.wat')
-rw-r--r--tests/wasm_compile_simple_module/instructions.wat2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wasm_compile_simple_module/instructions.wat b/tests/wasm_compile_simple_module/instructions.wat
index bdf8a16..e677c93 100644
--- a/tests/wasm_compile_simple_module/instructions.wat
+++ b/tests/wasm_compile_simple_module/instructions.wat
@@ -3,5 +3,5 @@
(func $main
i32.const 0x1D ;; dynamic offset for memory store instruction
i32.const 0x1E ;; value to store
- i32.store offset=0x1F align=2) ;; we store the difference at 0x23C
+ i32.store offset=0x1F align=4) ;; we store the difference at 0x23C
(export "main" (func $main)))