mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
53a457743b
This reverts reverting commit fc40a03323a4b265ccbed34a07e281b13c5e8367 and fixes LLD (MachO/wasm) tests that failed previously.
38 lines
999 B
YAML
38 lines
999 B
YAML
# RUN: yaml2obj %s | obj2yaml | FileCheck %s
|
|
--- !WASM
|
|
FileHeader:
|
|
Version: 0x00000001
|
|
Sections:
|
|
- Type: TYPE
|
|
Signatures:
|
|
- Index: 0
|
|
ParamTypes:
|
|
- I32
|
|
ReturnTypes:
|
|
- I32
|
|
- Type: IMPORT
|
|
Imports:
|
|
- Module: foo
|
|
Field: imported_memory
|
|
Kind: MEMORY
|
|
Memory:
|
|
Flags: [ HAS_MAX, IS_SHARED ]
|
|
Initial: 0x00000010
|
|
Maximum: 0x00000011
|
|
|
|
...
|
|
# CHECK: --- !WASM
|
|
# CHECK: FileHeader:
|
|
# CHECK: Version: 0x1
|
|
# CHECK: Sections:
|
|
# CHECK: - Type: IMPORT
|
|
# CHECK: Imports:
|
|
# CHECK: - Module: foo
|
|
# CHECK: Field: imported_memory
|
|
# CHECK: Kind: MEMORY
|
|
# CHECK: Memory:
|
|
# CHECK: Flags: [ HAS_MAX, IS_SHARED ]
|
|
# CHECK: Initial: 0x10
|
|
# CHECK: Maximum: 0x11
|
|
# CHECK: ...
|