repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[lit] Factor out separate methods for parallel and serial execution
[llvm-complete.git]
/
test
/
ObjectYAML
/
wasm
/
invalid_section_order.yaml
blob
4e3581ec5ebe3298b5293b49a02cc8fc7be98a43
1
# RUN: not yaml2obj %s -o /dev/null 2>&1 | FileCheck %s
2
3
--- !WASM
4
FileHeader:
5
Version: 0x00000001
6
Sections:
7
- Type: TYPE
8
Signatures:
9
- Index: 0
10
ReturnType: NORESULT
11
ParamTypes: []
12
- Type: CODE
13
Functions:
14
- Index: 0
15
Locals: []
16
Body: 0B
17
# CHECK: yaml2obj: error: out of order section type: 3
18
- Type: FUNCTION
19
FunctionTypes: [ 0 ]
20
...