From 30a97274bde7a1988d80861ab9b381148f3d19a7 Mon Sep 17 00:00:00 2001 From: Wojciech Kosior Date: Tue, 29 Dec 2020 19:50:56 +0100 Subject: fix align values --- tests/wasm_compile_arithm/instructions.wat | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/wasm_compile_arithm') diff --git a/tests/wasm_compile_arithm/instructions.wat b/tests/wasm_compile_arithm/instructions.wat index a43a348..e20e6c0 100644 --- a/tests/wasm_compile_arithm/instructions.wat +++ b/tests/wasm_compile_arithm/instructions.wat @@ -2,15 +2,15 @@ (memory 0 2) (func $main ;; write 0xFFEFE021 at MEMORY_BOTTOM_ADDR + 0x0 - (i32.store offset=0x0 align=2 (i32.const 0x0) + (i32.store offset=0x0 align=4 (i32.const 0x0) (i32.sub (i32.const 0x42143) (i32.const 0x144122))) ;; write 0x16D3B7 at MEMORY_BOTTOM_ADDR + 0x4 - (i32.store offset=0x0 align=2 (i32.const 0x4) + (i32.store offset=0x0 align=4 (i32.const 0x4) (i32.add (i32.const 0x7109D) (i32.const 0xFC31A))) ;; write 0xED8 at MEMORY_BOTTOM_ADDR + 0x8 - (i32.store offset=0x0 align=2 (i32.const 0x8) + (i32.store offset=0x0 align=4 (i32.const 0x8) (i32.div_u (i32.const 0x193E324F) (i32.const 0x1B342))) ;; write 0x3C773E7C at MEMORY_BOTTOM_ADDR + 0xC - (i32.store offset=0x0 align=2 (i32.const 0xC) + (i32.store offset=0x0 align=4 (i32.const 0xC) (i32.mul (i32.const 0x38F2C) (i32.const 0x10FD)))) (export "main" (func $main))) -- cgit v1.2.3