blob: b84d7ac1f4033bd84376bb1ae9a35dd158c8a07c [file] [log] [blame] [edit]
(module
(import "env" "func" (func $import))
(func $nopp
(nop)
)
(func $intt (result i32)
(i32.const 10)
)
(func $workk
(if (i32.const 0) (then (nop)))
(drop (i32.const 1))
)
(func $loops
(loop $x
(call $loops)
(br $x)
)
(if (call $intt)
(then
(loop $y
(call $loops)
)
)
)
(loop
(drop (i32.const 10))
(drop (i32.const 20))
(drop (i32.const 30))
)
)
(func $loops-similar
(loop $x
(call $loops)
(br $x)
)
)
)