diff options
author | Kirill R. <iam@python273.pw> | 2024-10-08 20:55:47 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-08 10:55:47 -0700 |
commit | b15a13ef84b5a12aadeb1200521a89a2c95dce19 (patch) | |
tree | 661d812e5eeb8afd6dd5166950c5d8f132332e44 /test/decompile/stack-flush.txt | |
parent | 646785d8b2b15a104d4ed0431125b2c781e141ea (diff) | |
download | wabt-b15a13ef84b5a12aadeb1200521a89a2c95dce19.tar.gz wabt-b15a13ef84b5a12aadeb1200521a89a2c95dce19.tar.bz2 wabt-b15a13ef84b5a12aadeb1200521a89a2c95dce19.zip |
wasm-decompile: add function index comments (#2482)
Diffstat (limited to 'test/decompile/stack-flush.txt')
-rw-r--r-- | test/decompile/stack-flush.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/decompile/stack-flush.txt b/test/decompile/stack-flush.txt index cea4fe9b..772f8190 100644 --- a/test/decompile/stack-flush.txt +++ b/test/decompile/stack-flush.txt @@ -50,7 +50,7 @@ (;; STDOUT ;;; memory M_a(initial: 1, max: 0); -export function f(a:int, b:int):int { +export function f(a:int, b:int):int { // func0 let t0 = s(); s(); let t1, t2 = s(), s(); @@ -70,11 +70,11 @@ export function f(a:int, b:int):int { return t7 == t8; } -export function s():int { +export function s():int { // func1 return 1 } -export function mv():(int, int) { +export function mv():(int, int) { // func2 return 1, 2 } |