mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
3273135094
This change adds a new flag not present in GNU objcopy that we call --strip-non-alloc. Differential Revision: https://reviews.llvm.org/D39926 llvm-svn: 318168
27 lines
666 B
Plaintext
27 lines
666 B
Plaintext
# RUN: yaml2obj %s > %t
|
|
# RUN: llvm-objcopy --strip-non-alloc %t %t2
|
|
# RUN: llvm-readobj -file-headers -sections %t2 | FileCheck %s
|
|
|
|
!ELF
|
|
FileHeader:
|
|
Class: ELFCLASS64
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_X86_64
|
|
Sections:
|
|
- Name: .bss
|
|
Type: SHT_NOBITS
|
|
Flags: [ SHF_ALLOC ]
|
|
- Name: .text
|
|
Type: SHT_PROGBITS
|
|
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
|
|
- Name: .blarg
|
|
Type: SHT_PROGBITS
|
|
Flags: [ ]
|
|
|
|
# CHECK: SectionHeaderCount: 4
|
|
|
|
# CHECK: Name: .bss
|
|
# CHECK: Name: .text
|
|
# CHECK: Name: .shstrtab
|