diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-10-29 17:55:50 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-10-29 17:55:50 -0700 |
commit | c9b8b17f6f5d01511bcfd511bfda28584533b467 (patch) | |
tree | ed4151f489f405e55068ed3494c5b685d04c0278 /test | |
parent | 891de7b9f3c173095b0e09d0f9069c14c6bd2bc4 (diff) | |
download | binaryen-c9b8b17f6f5d01511bcfd511bfda28584533b467.tar.gz binaryen-c9b8b17f6f5d01511bcfd511bfda28584533b467.tar.bz2 binaryen-c9b8b17f6f5d01511bcfd511bfda28584533b467.zip |
print a memory section
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 |