mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
7549421f49
Summary: Rename --elf-cg-profile to --cg-profile and keep --elf-cg-profile as an alias of --cg-profile. Reviewers: jhenderson, MaskRay, espindola, hans Reviewed By: jhenderson, MaskRay Subscribers: emaste, rupprecht, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D81855
67 lines
1.9 KiB
YAML
67 lines
1.9 KiB
YAML
# RUN: yaml2obj %s -o %t.o
|
|
# RUN: llvm-readobj -a --cg-profile --addrsig %t.o | FileCheck %s
|
|
|
|
# Test that multiple sections with the same type does not trigger an error.
|
|
|
|
# CHECK: ElfHeader {
|
|
# CHECK: VersionSymbols [
|
|
# 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: [ 0 ]
|
|
Link: .dynsym
|
|
- Name: .versym2
|
|
Type: SHT_GNU_versym
|
|
Entries: [ 0 ]
|
|
Link: .dynsym
|
|
- 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
|
|
DynamicSymbols: []
|
|
...
|