summaryrefslogtreecommitdiff
path: root/test/hello_world.wast.fromBinary
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2016-01-27 13:26:53 -0800
committerAlon Zakai <alonzakai@gmail.com>2016-01-27 13:48:32 -0800
commit3bb222899258e32e17692a18a6e65c3051a0cf20 (patch)
tree85b7d54876803ea561a8cc666d21aea8deef3946 /test/hello_world.wast.fromBinary
parent79e05f5d713b90f50ece22dfc6410f065de78be7 (diff)
downloadbinaryen-3bb222899258e32e17692a18a6e65c3051a0cf20.tar.gz
binaryen-3bb222899258e32e17692a18a6e65c3051a0cf20.tar.bz2
binaryen-3bb222899258e32e17692a18a6e65c3051a0cf20.zip
fix function results in binary format reading
Diffstat (limited to 'test/hello_world.wast.fromBinary')
-rw-r--r--test/hello_world.wast.fromBinary2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/hello_world.wast.fromBinary b/test/hello_world.wast.fromBinary
index 98e66d0da..7f2e65239 100644
--- a/test/hello_world.wast.fromBinary
+++ b/test/hello_world.wast.fromBinary
@@ -2,7 +2,7 @@
(memory 16777216 16777216)
(type $0 (func (param i32 i32) (result i32)))
(export "add" $add)
- (func $add (param $var$0 i32) (param $var$1 i32)
+ (func $add (param $var$0 i32) (param $var$1 i32) (result i32)
(i32.add
(get_local $var$0)
(get_local $var$1)