1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 20:23:11 +01:00
llvm-mirror/test/ObjectYAML/wasm/invalid_section_order.yaml

21 lines
486 B
YAML
Raw Normal View History

# RUN: not yaml2obj %s -o /dev/null 2>&1 | FileCheck %s
--- !WASM
FileHeader:
Version: 0x00000001
Sections:
- Type: TYPE
Signatures:
- Index: 0
ParamTypes: []
ReturnTypes: []
- Type: CODE
Functions:
- Index: 0
Locals: []
Body: 0B
# CHECK: yaml2obj: error: out of order section type: 3
- Type: FUNCTION
FunctionTypes: [ 0 ]
...