reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
# 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 ]
...