blob: 201a58fa465071fa15faea221f59e69f613a28e9 (
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
|
(module
(type $none_=>_none (func))
(type $none_=>_i32 (func (result i32)))
(import "env" "table" (table $timport$9 1 funcref))
(import "env" "__stack_pointer" (global $sp_import i32))
(import "env" "fp$__stdio_write$v" (func $fp$__stdio_write$v (result i32)))
(global $gimport$9 (mut i32) (i32.const 0))
(global $global i32 (i32.const 42))
(global $sp (mut i32) (global.get $sp_import))
(export "__stdio_write" (func $__stdio_write))
(export "__data_end" (global $global))
(export "__assign_got_enties" (func $__assign_got_enties))
(func $__stdio_write
(nop)
)
(func $__assign_got_enties
(global.set $gimport$9
(call $fp$__stdio_write$v)
)
)
)
(;
--BEGIN METADATA --
{
"staticBump": 4294966770,
"tableSize": 1,
"initializers": [
"__assign_got_enties"
],
"declares": [
"fp$__stdio_write$v"
],
"externs": [
"___stack_pointer"
],
"exports": [
"__stdio_write",
"__assign_got_enties"
],
"namedGlobals": {
"__data_end" : "42"
},
"invokeFuncs": [
],
"mainReadsParams": 0,
"features": [
]
}
-- END METADATA --
;)
|