Files
clang-p2996/lld/test/ELF/linkerscript/discard-phdr.s
Fangrui Song abb7484c31 [ELF] Don't create an output section named /DISCARD/ if it is assigned to the special phdr NONE
Fixes the remaining issue of PR41673 after D61186: with `/DISCARD/ { ... } :NONE`,
we may create an output section named `/DISCARD/`.

Note, if an input section is named `/DISCARD/`, ld.bfd discards it but
lld keeps it. It is probably not worth copying this behavior as it is unrealistic.

Reviewed By: ruiu

Differential Revision: https://reviews.llvm.org/D62768

llvm-svn: 362356
2019-06-03 05:34:25 +00:00

37 lines
796 B
ArmAsm

# REQUIRES: x86
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
# RUN: echo "PHDRS { \
# RUN: exec PT_LOAD FLAGS(0x4 | 0x1); \
# RUN: } \
# RUN: SECTIONS { \
# RUN: .text : { *(.text) } :exec \
# RUN: .foo : { *(.foo) } \
# RUN: .bar : { *(.bar) } \
# RUN: /DISCARD/ : { *(.discard) } :NONE \
# RUN: }" > %t.script
# RUN: ld.lld -o %t --script %t.script %t.o
# RUN: llvm-readelf -S -l %t | FileCheck --implicit-check-not=/DISCARD/ %s
## Check that /DISCARD/ does not interfere with the assignment of segments to
## sections.
# CHECK: Section Headers
# CHECK: .text
# CHECK-NEXT: .foo
# CHECK-NEXT: .bar
# CHECK: Segment Sections
# CHECK-NEXT: .text .foo .bar
.section .text,"ax"
ret
.section .foo,"a"
.byte 0
.section .bar,"ax"
ret
.section .discard
.byte 0