diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-11-03 11:00:55 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-11-03 11:00:55 -0800 |
commit | a4c2588fd5144b0b8759865d42138e1f6bb228a9 (patch) | |
tree | fa9df94c66575e1625921c59e43d4e3f93b07030 /test | |
parent | 948f9255e2adac2b9e8b290742f06a515c14d043 (diff) | |
download | binaryen-a4c2588fd5144b0b8759865d42138e1f6bb228a9.tar.gz binaryen-a4c2588fd5144b0b8759865d42138e1f6bb228a9.tar.bz2 binaryen-a4c2588fd5144b0b8759865d42138e1f6bb228a9.zip |
add memorySize to Module
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 |