blob: 716ec04dbb8f037d9534cf721df36c70daf7236a (
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
70
71
72
73
74
75
76
77
78
|
;;; TOOL: run-roundtrip
;;; ARGS: --stdout --enable-bulk-memory --enable-memory64
(module
(memory i64 0)
(table 0 anyfunc)
(func
i64.const 0
i32.const 0
i32.const 0
memory.init 0
data.drop 0
i64.const 0
i64.const 0
i64.const 0
memory.copy
i64.const 0
i32.const 0
i64.const 0
memory.fill
i32.const 0
i32.const 0
i32.const 0
table.init 0
elem.drop 0
i32.const 0
i32.const 0
i32.const 0
table.copy
)
(func)
(data "hi")
(elem funcref (ref.func 0) (ref.null func))
(elem func 1)
)
(;; STDOUT ;;;
(module
(type (;0;) (func))
(func (;0;) (type 0)
i64.const 0
i32.const 0
i32.const 0
memory.init 0
data.drop 0
i64.const 0
i64.const 0
i64.const 0
memory.copy
i64.const 0
i32.const 0
i64.const 0
memory.fill
i32.const 0
i32.const 0
i32.const 0
table.init 0
elem.drop 0
i32.const 0
i32.const 0
i32.const 0
table.copy)
(func (;1;) (type 0))
(table (;0;) 0 funcref)
(memory (;0;) i64 0)
(elem (;0;) funcref (ref.func 0) (ref.null func))
(elem (;1;) func 1)
(data (;0;) "hi"))
;;; STDOUT ;;)
|