mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
6f41305fd8
In ELF (as in MachO), not all relocations point to symbols. Represent this properly by using a symbol_iterator instead of a SymbolRef. Update llvm-readobj ELF's dumper to handle relocatios without symbols. llvm-svn: 183284
8 lines
220 B
Plaintext
8 lines
220 B
Plaintext
RUN: llvm-readobj -r %p/Inputs/elf-reloc-no-sym.x86_64 | FileCheck %s
|
|
|
|
CHECK: Relocations [
|
|
CHECK-NEXT: Section (1) .rela.plt {
|
|
CHECK-NEXT: 0x4011D8 R_X86_64_IRELATIVE - 0x400120
|
|
CHECK-NEXT: }
|
|
CHECK-NEXT: ]
|