blob: 66153770c7d428b00d81c2f5a0188e2f4b239e6f (
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
|
(module
(type $i (func (result i32)))
(type $v (func))
(type $vi (func (param i32)))
(import "spectest" "print" (func $print (param i32)))
(memory $0 1 1)
(export "mem" (memory $0))
(start $main)
(func $check (; 1 ;) (type $i) (result i32)
(if
(i32.ge_u
(i32.load
(i32.const 4)
)
(i32.const 48)
)
(unreachable)
)
(i32.store
(i32.const 4)
(i32.add
(i32.load
(i32.const 4)
)
(i32.const 4)
)
)
(call $print
(i32.sub
(i32.const 0)
(i32.load offset=4
(i32.load
(i32.const 4)
)
)
)
)
(i32.load offset=4
(i32.load
(i32.const 4)
)
)
)
(func $main (; 2 ;) (type $v)
(local $0 i32)
(local $1 i32)
(block
(block
(call $print
(i32.const 0)
)
(set_local $0
(call $check)
)
)
(block
(call $print
(i32.const 1)
)
(set_local $0
(call $check)
)
)
)
)
)
|