blob: 2196056b33d1d0058470840a0e9ef872585660e9 [file] [log] [blame]
(module
(type $0 (func))
(memory $0 0)
(func $a (type $0)
(if
(i32.const 1)
(unreachable)
)
)
(func $b (type $0)
(if
(i32.const 1)
(unreachable)
(unreachable)
)
)
(func $a-block (type $0)
(block $block
(if
(i32.const 1)
(unreachable)
)
)
)
(func $b-block (type $0)
(block $block
(if
(i32.const 1)
(unreachable)
(unreachable)
)
)
)
(func $a-prepost (type $0)
(nop)
(if
(i32.const 1)
(unreachable)
)
(nop)
)
(func $b-prepost (type $0)
(nop)
(if
(i32.const 1)
(unreachable)
(unreachable)
)
(nop)
)
(func $a-block-prepost (type $0)
(nop)
(block $block
(if
(i32.const 1)
(unreachable)
)
)
(nop)
)
(func $b-block-prepost (type $0)
(nop)
(block $block
(if
(i32.const 1)
(unreachable)
(unreachable)
)
)
(nop)
)
(func $recurse (type $0)
(block $a
(nop)
(block $b
(nop)
(br $b)
(nop)
)
(nop)
)
)
(func $recurse-b (type $0)
(block $a
(nop)
(block $b
(nop)
(br $a)
(nop)
)
(nop)
)
)
)