blob: f2df75610935617c5684e504b1c258aec1e41670 (
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
|
;;; TOOL: run-roundtrip
;;; ARGS: --stdout --enable-bulk-memory
(module
(memory 0)
(table 0 anyfunc)
(func
i32.const 0
i32.const 0
i32.const 0
memory.init 0
memory.drop 0
i32.const 0
i32.const 0
i32.const 0
memory.copy
i32.const 0
i32.const 0
i32.const 0
memory.fill
i32.const 0
i32.const 0
i32.const 0
table.init 0
table.drop 0
i32.const 0
i32.const 0
i32.const 0
table.copy
)
(func)
(data passive "hi")
(elem passive 1)
)
(;; STDOUT ;;;
(module
(type (;0;) (func))
(func (;0;) (type 0)
i32.const 0
i32.const 0
i32.const 0
memory.init 0
memory.drop 0
i32.const 0
i32.const 0
i32.const 0
memory.copy
i32.const 0
i32.const 0
i32.const 0
memory.fill
i32.const 0
i32.const 0
i32.const 0
table.init 0
table.drop 0
i32.const 0
i32.const 0
i32.const 0
table.copy)
(func (;1;) (type 0))
(table (;0;) 0 anyfunc)
(memory (;0;) 0)
(elem passive 1)
(data passive "hi"))
;;; STDOUT ;;)
|