diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/emcc_hello_world.wast | 1 | ||||
-rw-r--r-- | test/hello_world.wast | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/test/emcc_hello_world.wast b/test/emcc_hello_world.wast index 676a16b57..358d3f536 100644 --- a/test/emcc_hello_world.wast +++ b/test/emcc_hello_world.wast @@ -1,4 +1,5 @@ (module + (memory 16777216) (type $FUNCSIG$ii (func (param i32) (result i32))) (type $FUNCSIG$iiii (func (param i32 i32 i32) (result i32))) (type $FUNCSIG$vi (func (param i32))) diff --git a/test/hello_world.wast b/test/hello_world.wast index 95d84116b..e36b85c4a 100644 --- a/test/hello_world.wast +++ b/test/hello_world.wast @@ -1,4 +1,5 @@ (module + (memory 16777216) (export "add" $add) (func $add (param $x i32) (param $y i32) (result i32) (i32.add |