diff options
Diffstat (limited to 'test/dot_s/asm_const.wast')
-rw-r--r-- | test/dot_s/asm_const.wast | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/dot_s/asm_const.wast b/test/dot_s/asm_const.wast index 2b33a7539..4484fe3d2 100644 --- a/test/dot_s/asm_const.wast +++ b/test/dot_s/asm_const.wast @@ -8,7 +8,7 @@ (export "stackAlloc" (func $stackAlloc)) (export "stackRestore" (func $stackRestore)) (export "main" (func $main)) - (func $main (result i32) + (func $main (; 1 ;) (result i32) (call $emscripten_asm_const_v (i32.const 0) ) @@ -16,12 +16,12 @@ (i32.const 0) ) ) - (func $stackSave (result i32) + (func $stackSave (; 2 ;) (result i32) (i32.load offset=4 (i32.const 0) ) ) - (func $stackAlloc (param $0 i32) (result i32) + (func $stackAlloc (; 3 ;) (param $0 i32) (result i32) (local $1 i32) (set_local $1 (i32.load offset=4 @@ -40,7 +40,7 @@ ) (get_local $1) ) - (func $stackRestore (param $0 i32) + (func $stackRestore (; 4 ;) (param $0 i32) (i32.store offset=4 (i32.const 0) (get_local $0) |