blob: 6dac41ac2327794e5a1b23625cea06b7095c3bd1 (
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
27
28
29
30
31
32
33
34
35
36
|
;;; TOOL: run-objdump-spec
;;; ARGS1: --headers %(temp_file)s.0.wasm %(temp_file)s.1.wasm
(module
(func (param $param2 i64))
)
(module
(func (param $param2 i64))
)
(;; STDOUT ;;;
multi_file.0.wasm: file format wasm 0x1
Sections:
Type start=0x0000000a end=0x0000000f (size=0x00000005) count: 1
Function start=0x00000011 end=0x00000013 (size=0x00000002) count: 1
Code start=0x00000015 end=0x00000019 (size=0x00000004) count: 1
Code Disassembly:
000017 func[0]:
000018: 0b | end
multi_file.1.wasm: file format wasm 0x1
Sections:
Type start=0x0000000a end=0x0000000f (size=0x00000005) count: 1
Function start=0x00000011 end=0x00000013 (size=0x00000002) count: 1
Code start=0x00000015 end=0x00000019 (size=0x00000004) count: 1
Code Disassembly:
000017 func[0]:
000018: 0b | end
;;; STDOUT ;;)
|