diff options
author | Alon Zakai <alonzakai@gmail.com> | 2017-10-20 19:38:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-20 19:38:31 -0700 |
commit | 1005b1267f70a5a7cf7a8774af6c12d813464720 (patch) | |
tree | 04b27ca5a8fddcef4941681ec81d680c4351c74a /test/hello_world.wast.from-wast | |
parent | 71dc0791361a79e4346eb84ebadf77a324767e32 (diff) | |
download | binaryen-1005b1267f70a5a7cf7a8774af6c12d813464720.tar.gz binaryen-1005b1267f70a5a7cf7a8774af6c12d813464720.tar.bz2 binaryen-1005b1267f70a5a7cf7a8774af6c12d813464720.zip |
Emit binary function index in comment in text format, for convenience (#1232)
Diffstat (limited to 'test/hello_world.wast.from-wast')
-rw-r--r-- | test/hello_world.wast.from-wast | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/hello_world.wast.from-wast b/test/hello_world.wast.from-wast index ade7bd1ef..4a0f62082 100644 --- a/test/hello_world.wast.from-wast +++ b/test/hello_world.wast.from-wast @@ -2,7 +2,7 @@ (type $0 (func (param i32 i32) (result i32))) (memory $0 256 256) (export "add" (func $add)) - (func $add (type $0) (param $x i32) (param $y i32) (result i32) + (func $add (; 0 ;) (type $0) (param $x i32) (param $y i32) (result i32) (i32.add (get_local $x) (get_local $y) |