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/reduce | |
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/reduce')
-rw-r--r-- | test/reduce/destructive.wast.txt | 2 | ||||
-rw-r--r-- | test/reduce/memory_table.wast.txt | 8 | ||||
-rw-r--r-- | test/reduce/simple.wast.txt | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/test/reduce/destructive.wast.txt b/test/reduce/destructive.wast.txt index b5776b35e..d58f0ed7a 100644 --- a/test/reduce/destructive.wast.txt +++ b/test/reduce/destructive.wast.txt @@ -2,7 +2,7 @@ (type $0 (func (param i32) (result i32))) (memory $0 0) (export "x" (func $0)) - (func $0 (type $0) (param $var$0 i32) (result i32) + (func $0 (; 0 ;) (type $0) (param $var$0 i32) (result i32) (i32.const 100) ) ) diff --git a/test/reduce/memory_table.wast.txt b/test/reduce/memory_table.wast.txt index 005493040..0a9a8a9e4 100644 --- a/test/reduce/memory_table.wast.txt +++ b/test/reduce/memory_table.wast.txt @@ -7,7 +7,7 @@ (export "f1" (func $2)) (export "f2" (func $3)) (export "f4" (func $0)) - (func $0 (type $0) (result i32) + (func $0 (; 0 ;) (type $0) (result i32) (i32.add (call_indirect $0 (i32.const 3) @@ -17,13 +17,13 @@ ) ) ) - (func $1 (type $0) (result i32) + (func $1 (; 1 ;) (type $0) (result i32) (i32.const 1234) ) - (func $2 (type $1) + (func $2 (; 2 ;) (type $1) (nop) ) - (func $3 (type $0) (result i32) + (func $3 (; 3 ;) (type $0) (result i32) (i32.store (i32.const 0) (i32.const 65530) diff --git a/test/reduce/simple.wast.txt b/test/reduce/simple.wast.txt index b5209d1bc..9c162a7a6 100644 --- a/test/reduce/simple.wast.txt +++ b/test/reduce/simple.wast.txt @@ -2,7 +2,7 @@ (type $0 (func (result i32))) (memory $0 0) (export "x" (func $0)) - (func $0 (type $0) (result i32) + (func $0 (; 0 ;) (type $0) (result i32) (i32.const 5678) ) ) |