blob: e7b827f551474e9c48a82c7b458f191fc1c824cb (
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
|
(module
(func $contrast ;; check for tee and structure sinking
(local $x i32)
(local $y i32)
(local $z i32)
(local $a i32)
(local $b i32)
(set_local $x (i32.const 1))
(if (get_local $x) (nop))
(if (get_local $x) (nop))
(set_local $y (if i32 (i32.const 2) (i32.const 3) (i32.const 4)))
(drop (get_local $y))
(set_local $z (block i32 (i32.const 5)))
(drop (get_local $z))
(if (i32.const 6)
(set_local $a (i32.const 7))
(set_local $a (i32.const 8))
)
(drop (get_local $a))
(block $val
(if (i32.const 10)
(block
(set_local $b (i32.const 11))
(br $val)
)
)
(set_local $b (i32.const 12))
)
(drop (get_local $b))
)
)
|