blob: 8f139db666ac28d9d58ce44d33144f39ba8688d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
(module
(type $none_=>_none (func))
(type $none_=>_i32 (func (result i32)))
(type $i32_i32_=>_i32 (func (param i32 i32) (result i32)))
(memory $0 2)
(table $0 1 1 funcref)
(global $global$0 (mut i32) (i32.const 66112))
(global $global$1 i32 (i32.const 576))
(export "memory" (memory $0))
(export "__wasm_call_ctors" (func $__wasm_call_ctors))
(export "main" (func $main))
(export "__data_end" (global $global$1))
(func $__wasm_call_ctors
(call $init_x)
(call $init_y)
)
(func $init_x
(i32.store offset=568
(i32.const 0)
(i32.const 14)
)
)
(func $init_y
(i32.store offset=572
(i32.const 0)
(i32.const 144)
)
)
(func $__original_main (result i32)
(i32.add
(i32.load offset=568
(i32.const 0)
)
(i32.load offset=572
(i32.const 0)
)
)
)
(func $main (param $0 i32) (param $1 i32) (result i32)
(call $__original_main)
)
)
(;
--BEGIN METADATA --
{
"staticBump": 8,
"tableSize": 1,
"initializers": [
"__wasm_call_ctors"
],
"declares": [
],
"externs": [
],
"exports": [
"__wasm_call_ctors",
"main"
],
"namedGlobals": {
"__data_end" : "576"
},
"invokeFuncs": [
],
"mainReadsParams": 0,
"features": [
]
}
-- END METADATA --
;)
|