blob: 76622bbf18621e3ea9db6cf448a1c9eb9b0ddf31 (
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
|
(module
(memory 256 256)
(type $0 (func (param i32)))
(func $ifs (type $0) (param $x i32)
(local $y f32)
(block $block0
(if
(i32.const 0)
(drop
(i32.const 1)
)
)
(if
(i32.const 0)
(drop
(i32.const 1)
)
(drop
(i32.const 2)
)
)
(if
(i32.const 4)
(drop
(i32.const 5)
)
(drop
(i32.const 6)
)
)
(drop
(i32.eq
(if i32
(i32.const 4)
(i32.const 5)
(i32.const 6)
)
(i32.const 177)
)
)
)
)
)
|