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/passes/local-cse.txt | |
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/passes/local-cse.txt')
-rw-r--r-- | test/passes/local-cse.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/passes/local-cse.txt b/test/passes/local-cse.txt index 34e7c9580..c15b1a95c 100644 --- a/test/passes/local-cse.txt +++ b/test/passes/local-cse.txt @@ -2,7 +2,7 @@ (type $0 (func)) (type $1 (func (param i32) (result i32))) (memory $0 100 100) - (func $basics (type $0) + (func $basics (; 0 ;) (type $0) (local $x i32) (local $y i32) (local $2 i32) @@ -56,7 +56,7 @@ ) ) ) - (func $recursive1 (type $0) + (func $recursive1 (; 1 ;) (type $0) (local $x i32) (local $y i32) (local $2 i32) @@ -81,7 +81,7 @@ (get_local $2) ) ) - (func $recursive2 (type $0) + (func $recursive2 (; 2 ;) (type $0) (local $x i32) (local $y i32) (local $2 i32) @@ -106,7 +106,7 @@ ) ) ) - (func $self (type $0) + (func $self (; 3 ;) (type $0) (local $x i32) (local $y i32) (local $2 i32) @@ -125,7 +125,7 @@ (get_local $2) ) ) - (func $loads (type $0) + (func $loads (; 4 ;) (type $0) (drop (i32.load (i32.const 10) @@ -137,7 +137,7 @@ ) ) ) - (func $8 (type $1) (param $var$0 i32) (result i32) + (func $8 (; 5 ;) (type $1) (param $var$0 i32) (result i32) (local $var$1 i32) (local $var$2 i32) (local $var$3 i32) |