summaryrefslogtreecommitdiff
path: root/test/decompile/stack-flush.txt
diff options
context:
space:
mode:
authorKirill R. <iam@python273.pw>2024-10-08 20:55:47 +0300
committerGitHub <noreply@github.com>2024-10-08 10:55:47 -0700
commitb15a13ef84b5a12aadeb1200521a89a2c95dce19 (patch)
tree661d812e5eeb8afd6dd5166950c5d8f132332e44 /test/decompile/stack-flush.txt
parent646785d8b2b15a104d4ed0431125b2c781e141ea (diff)
downloadwabt-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.txt6
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
}