blob: 3208b76de50ada4673f0ed31600f38b28cfaff74 (
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
|
(module
(func $sink-from-inside (result i32)
(local $0 i32)
(local $1 i32)
(local $2 i32)
(local.set $2
(block (result i32)
(local.set $0
(i32.const 1)
)
(drop
(local.get $0)
)
(local.set $1 ;; after we sink this, must be careful about sinking the parent, to not reorder other things badly
(select
(i32.const 0)
(i32.const 1)
(local.get $0)
)
)
(i32.const 1)
)
)
(i32.and
(local.get $1)
(local.get $2)
)
)
)
|