blob: a755a55947d8accd5ee67be1b6773b551600ad9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
;;; TOOL: run-wasm-decompile
(module
(type (;0;) (func (result i64)))
(func (;0;) (type 0) (result i64)
global.get 0)
(global (;0;) i64 (i64.const 8))
(export "" (global 0))
)
(;; STDOUT ;;;
export global __empty:long = 8L;
function f_a():long {
return __empty
}
;;; STDOUT ;;)
|