blob: 4f2f30ce371bcbef1155279f8fd784e68ef26118 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
(module
(type $none_=>_i32 (func (result i32)))
(func $sink-from-inside (result i32)
(local $0 i32)
(local $1 i32)
(local $2 i32)
(nop)
(i32.and
(select
(i32.const 0)
(i32.const 1)
(i32.const 1)
)
(block (result i32)
(nop)
(nop)
(nop)
(i32.const 1)
)
)
)
)
|