[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / ObjectYAML / wasm / custom_section.yaml
blob934400cfe4080e643fbdc138827c018fb50e7c4d
1 # RUN: yaml2obj %s | obj2yaml | FileCheck %s
2 --- !WASM
3 FileHeader:
4   Version:         0x00000001
5 Sections:
6   - Type:            CUSTOM
7     Name:            foo
8     Payload:         '0401020304'
9 ...
10 # CHECK: --- !WASM
11 # CHECK: FileHeader:
12 # CHECK:   Version:           0x1
13 # CHECK: Sections:
14 # CHECK:  - Type:            CUSTOM
15 # CHECK:    Name:            foo
16 # CHECK:    Payload:         '0401020304'
17 # CHECK: ...