mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
2653debe71
That may be useful if we want to produce or parse object containing broken relocation values using yaml2obj/obj2yaml. Previously that was impossible because only enum values were parsed correctly, this patch allows to put any numeric value as a relocation type. Differential revision: https://reviews.llvm.org/D34758 llvm-svn: 306814
30 lines
739 B
YAML
30 lines
739 B
YAML
# RUN: yaml2obj %s > %t
|
|
# RUN: obj2yaml %t | FileCheck %s
|
|
|
|
# CHECK: Relocations:
|
|
# CHECK-NEXT: - Offset:
|
|
# CHECK-NEXT: Symbol:
|
|
# CHECK-NEXT: Type: 0x000000FF
|
|
|
|
!ELF
|
|
FileHeader:
|
|
Class: ELFCLASS32
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_386
|
|
Sections:
|
|
- Type: SHT_PROGBITS
|
|
Name: .text
|
|
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
|
|
AddressAlign: 0x04
|
|
Content: 0000000000000000
|
|
- Type: SHT_REL
|
|
Name: .rel.text
|
|
Link: .symtab
|
|
Info: .text
|
|
AddressAlign: 0x04
|
|
Relocations:
|
|
- Offset: 0
|
|
Symbol: main
|
|
Type: 0xFF
|