diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/emcc_O2_hello_world.wast | 2 | ||||
-rw-r--r-- | test/emcc_hello_world.wast | 2 | ||||
-rw-r--r-- | test/hello_world.wast | 2 | ||||
-rw-r--r-- | test/unit.wast | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/test/emcc_O2_hello_world.wast b/test/emcc_O2_hello_world.wast index e9b95ce16..9aae649a1 100644 --- a/test/emcc_O2_hello_world.wast +++ b/test/emcc_O2_hello_world.wast @@ -1,5 +1,5 @@ (module - (memory 16777216) + (memory 16777216 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/emcc_hello_world.wast b/test/emcc_hello_world.wast index 96e96c614..6ed6b3d65 100644 --- a/test/emcc_hello_world.wast +++ b/test/emcc_hello_world.wast @@ -1,5 +1,5 @@ (module - (memory 16777216) + (memory 16777216 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 e36b85c4a..1c8f9d359 100644 --- a/test/hello_world.wast +++ b/test/hello_world.wast @@ -1,5 +1,5 @@ (module - (memory 16777216) + (memory 16777216 16777216) (export "add" $add) (func $add (param $x i32) (param $y i32) (result i32) (i32.add diff --git a/test/unit.wast b/test/unit.wast index 4f68a6a33..e999c02a2 100644 --- a/test/unit.wast +++ b/test/unit.wast @@ -1,5 +1,5 @@ (module - (memory 16777216) + (memory 16777216 16777216) (export "big_negative" $big_negative) (table $z $big_negative $importedDoubles $z) (func $big_negative |