Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
wabt
/
9ee3f004cb11127ee33b9f5d9285fa17841c2db2
/
.
/
test
/
parse
/
expr
/
loop-multi.txt
blob: 8fb343a9dcfc53d0c14a6e1efebc16baada5d7fc [
file
] [
log
] [
blame
]
;;; TOOL: wat2wasm
(module
;; loop w/ multiple results
(func
loop (result i32 i64)
i32.const 0
i64.const 0
end
return)
;; loop w/ params
(func
i64.const 0
loop (param i64) (result i32)
drop
i32.const 1
end
return)
)