blob: 12f7f6f0577f27f20862eed4407e749471c9066b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
;;; TOOL: run-wasm-decompile
(module
(type (;0;) (func (param i32 i32) (result i32)))
(func (;0;) (type 0) (param i32 i32) (result i32)
local.get 0
loop (param i32) (result i32) ;; label = @1
unreachable
br_table 0 (;@1;) 0 (;@1;)
i32.add
end))
(;; STDOUT ;;;
function f_a(a:int, b:int):int { // func0
a + br_table[L_a, ..L_a](unreachable);
return loop L_a {
}
}
;;; STDOUT ;;)
|