Files
archived-llvm/test/Object/multiple-sections.yaml
George Rimar 2172294141 [llvm-readobj] - Refine the LLVM-style output to be consistent.
Our LLVM-style output was inconsistent.
This patch changes the output in the following way:

SHT_GNU_verdef { -> VersionDefinitions [
SHT_GNU_verneed { -> VersionRequirements [
Version symbols [ -> VersionSymbols [
EH_FRAME Header [ -> EHFrameHeader {

Differential revision: https://reviews.llvm.org/D68636

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@375095 91177308-0d34-0410-b5e6-96231b3b80d8
2019-10-17 10:23:48 +00:00

63 lines
1.8 KiB
YAML

# RUN: yaml2obj %s -o %t.o
# RUN: llvm-readobj -a --elf-cg-profile --addrsig %t.o | FileCheck %s
# Test that multiple sections with the same type does not trigger an error.
# CHECK: ElfHeader {
# CHECK: VersionDefinitions [
# CHECK: VersionRequirements [
# CHECK: CGProfile [
# CHECK: Addrsig [
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_X86_64
Sections:
- Name: .symtab2
Type: SHT_SYMTAB
Link: .strtab
Content: ''
EntSize: 24
- Name: .versym
Type: SHT_GNU_versym
Entries: [ ]
- Name: .versym2
Type: SHT_GNU_versym
Entries: [ ]
- Name: .verdef
Type: SHT_GNU_verdef
Info: 0x0000000000000000
Entries:
- Name: .verdef2
Type: SHT_GNU_verdef
Info: 0x0000000000000000
Entries:
- Name: .verneed
Type: SHT_GNU_verneed
Info: 0x0000000000000000
Dependencies:
- Name: .verneed2
Type: SHT_GNU_verneed
Info: 0x0000000000000000
Dependencies:
- Name: .llvm.call-graph-profile
Type: SHT_LLVM_CALL_GRAPH_PROFILE
Content: ''
EntSize: 16
- Name: .llvm.call-graph-profile2
Type: SHT_LLVM_CALL_GRAPH_PROFILE
Content: ''
EntSize: 16
- Name: .llvm_addrsig
Type: SHT_LLVM_ADDRSIG
Content: ''
- Name: .llvm_addrsig2
Type: SHT_LLVM_ADDRSIG
Content: ''
Symbols:
- Name: f
...