mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
22ea853e81
This was previously being silently dropped by obj2yaml and caused parsing errors with yaml2obj. Differential Revision: https://reviews.llvm.org/D38490 llvm-svn: 314768
29 lines
809 B
YAML
29 lines
809 B
YAML
# RUN: yaml2obj %s -o %t
|
|
# RUN: llvm-readobj -sections %t | FileCheck -check-prefix=OBJ %s
|
|
# RUN: obj2yaml %t | FileCheck -check-prefix=YAML %s
|
|
|
|
--- !ELF
|
|
FileHeader:
|
|
Class: ELFCLASS32
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_386
|
|
Sections:
|
|
- Name: .debug_line
|
|
Type: SHT_PROGBITS
|
|
Flags: [ SHF_COMPRESSED ]
|
|
|
|
# OBJ: Sections [
|
|
# OBJ: Section {
|
|
# OBJ: Index: 1
|
|
# OBJ-NEXT: Name: .debug_line (1)
|
|
# OBJ-NEXT: Type: SHT_PROGBITS (0x1)
|
|
# OBJ-NEXT: Flags [ (0x800)
|
|
# OBJ-NEXT: SHF_COMPRESSED (0x800)
|
|
# OBJ-NEXT: ]
|
|
|
|
# YAML: Sections:
|
|
# YAML-NEXT: - Name: .debug_line
|
|
# YAML-NEXT: Type: SHT_PROGBITS
|
|
# YAML-NEXT: Flags: [ SHF_COMPRESSED ]
|