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/llvm_autogenerated/store.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/llvm_autogenerated/store.wast')
-rw-r--r-- | test/llvm_autogenerated/store.wast | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/llvm_autogenerated/store.wast b/test/llvm_autogenerated/store.wast index c65267e30..d3d64189b 100644 --- a/test/llvm_autogenerated/store.wast +++ b/test/llvm_autogenerated/store.wast @@ -9,40 +9,40 @@ (export "sti64" (func $sti64)) (export "stf32" (func $stf32)) (export "stf64" (func $stf64)) - (func $sti32 (param $0 i32) (param $1 i32) + (func $sti32 (; 0 ;) (param $0 i32) (param $1 i32) (i32.store (get_local $0) (get_local $1) ) (return) ) - (func $sti64 (param $0 i32) (param $1 i64) + (func $sti64 (; 1 ;) (param $0 i32) (param $1 i64) (i64.store (get_local $0) (get_local $1) ) (return) ) - (func $stf32 (param $0 i32) (param $1 f32) + (func $stf32 (; 2 ;) (param $0 i32) (param $1 f32) (f32.store (get_local $0) (get_local $1) ) (return) ) - (func $stf64 (param $0 i32) (param $1 f64) + (func $stf64 (; 3 ;) (param $0 i32) (param $1 f64) (f64.store (get_local $0) (get_local $1) ) (return) ) - (func $stackSave (result i32) + (func $stackSave (; 4 ;) (result i32) (i32.load offset=4 (i32.const 0) ) ) - (func $stackAlloc (param $0 i32) (result i32) + (func $stackAlloc (; 5 ;) (param $0 i32) (result i32) (local $1 i32) (set_local $1 (i32.load offset=4 @@ -61,7 +61,7 @@ ) (get_local $1) ) - (func $stackRestore (param $0 i32) + (func $stackRestore (; 6 ;) (param $0 i32) (i32.store offset=4 (i32.const 0) (get_local $0) |