blob: 49111469fdbdf5473b482200c1d3adf278299974 (
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 { // func0
return __empty
}
;;; STDOUT ;;)
|