diff options
Diffstat (limited to 'test/dot_s')
-rw-r--r-- | test/dot_s/asm_const.wast | 1 | ||||
-rw-r--r-- | test/dot_s/basics.wast | 1 | ||||
-rw-r--r-- | test/dot_s/exit.wast | 1 | ||||
-rw-r--r-- | test/dot_s/memops.wast | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/test/dot_s/asm_const.wast b/test/dot_s/asm_const.wast index 56d4ba58d..750fd0989 100644 --- a/test/dot_s/asm_const.wast +++ b/test/dot_s/asm_const.wast @@ -1,5 +1,6 @@ (module (memory 51 4294967295 (segment 16 "{ Module.print(\"hello, world!\"); }\00")) + (type $FUNCSIG$vi (func (param i32))) (import $_emscripten_asm_const_vi "env" "_emscripten_asm_const_vi" (param i32)) (export "main" $main) (func $main (result i32) diff --git a/test/dot_s/basics.wast b/test/dot_s/basics.wast index a3ce77ec2..b73f6c456 100644 --- a/test/dot_s/basics.wast +++ b/test/dot_s/basics.wast @@ -1,5 +1,6 @@ (module (memory 52 4294967295 (segment 16 "hello, world!\n\00") (segment 32 "vcq") (segment 48 "\16\00\00\00")) + (type $FUNCSIG$vi (func (param i32))) (import $puts "env" "puts" (param i32)) (export "main" $main) (table $main) diff --git a/test/dot_s/exit.wast b/test/dot_s/exit.wast index 7ac114749..cb54d686b 100644 --- a/test/dot_s/exit.wast +++ b/test/dot_s/exit.wast @@ -1,5 +1,6 @@ (module (memory 0 4294967295) + (type $FUNCSIG$vi (func (param i32))) (import $exit "env" "exit" (param i32)) (export "main" $main) (func $main (result i32) diff --git a/test/dot_s/memops.wast b/test/dot_s/memops.wast index 784958275..e8ea14590 100644 --- a/test/dot_s/memops.wast +++ b/test/dot_s/memops.wast @@ -1,5 +1,6 @@ (module (memory 67 4294967295 (segment 16 "{ Module.print(\"hello, world! \" + HEAP32[8>>2]); }\00")) + (type $FUNCSIG$vi (func (param i32))) (import $_emscripten_asm_const_vi "env" "_emscripten_asm_const_vi" (param i32)) (export "_Z6reporti" $_Z6reporti) (export "main" $main) |