repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[libc++][NFC] Add missing includes in tzdb.cpp
[llvm-project.git]
/
llvm
/
test
/
ObjectYAML
/
wasm
/
function_section.yaml
blob
4a57c4d2e7c6443239d81edc1ed22cb8249cd8f6
1
# RUN: yaml2obj %s | obj2yaml | FileCheck %s
2
--- !WASM
3
FileHeader:
4
Version: 0x00000001
5
Sections:
6
- Type: TYPE
7
Signatures:
8
- Index: 0
9
ParamTypes:
10
ReturnTypes: []
11
- Index: 1
12
ParamTypes:
13
- I32
14
ReturnTypes: []
15
- Type: FUNCTION
16
FunctionTypes: [ 1, 0 ]
17
- Type: CODE
18
Functions:
19
- Index: 0
20
Locals:
21
Body: 0B
22
- Index: 1
23
Locals:
24
Body: 0B
25
...
26
# CHECK: --- !WASM
27
# CHECK: FileHeader:
28
# CHECK: Version: 0x1
29
# CHECK: Sections:
30
# CHECK: - Type: FUNCTION
31
# CHECK: FunctionTypes: [ 1, 0 ]
32
# CHECK: ...