blob: 12175fbcb5d36689f1b19af295ddb2a526430296 [file] [log] [blame] [edit]
(module
(func $nopp
(nop)
)
(func $intt (result i32)
(i32.const 10)
)
(func $workk
(if (i32.const 0) (nop))
(drop (i32.const 1))
)
(func $loops
(loop $x
(call $loops)
(br $x)
)
(if (call $intt)
(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)
)
)
)