blob: f70a50f6ac09f7003b92888142b352d34f8f9897 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
;;; TOOL: run-gen-wasm
magic
version
section(TYPE) { count[1] function params[0] results[0] }
section(FUNCTION) { count[2] sig[0] sig[0] }
section(CODE) {
count[2]
func {
local_decls[1]
locals[0] i32
}
func {
local_decls[4]
locals[1] i64
locals[0] i32
locals[2] f64
locals[0] f32
}
}
(;; STDOUT ;;;
(module
(type (;0;) (func))
(func (;0;) (type 0))
(func (;1;) (type 0)
(local i64 f64 f64)))
;;; STDOUT ;;)
|