blob: 9552a9168c8b940d84679f067837596dfc387bf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
;;; TOOL: wat2wasm
(module
(func (result i32)
block $outer
block $inner
loop
i32.const 1
if
br $outer
end
br $inner
end
end
i32.const 2
return
end
i32.const 3
return))
|