This behavior matches GNU ld and seems reasonable. ``` // If a SECTIONS command is not specified .text.* -> .text .rodata.* -> .rodata .init_array.* -> .init_array ``` A proposed Linux feature CONFIG_FG_KASLR may depend on the GNU ld behavior. Reword a comment about -z keep-text-section-prefix and a comment about CommonSection (deleted by rL286234). Reviewed By: grimar Differential Revision: https://reviews.llvm.org/D75225
18 lines
435 B
ArmAsm
18 lines
435 B
ArmAsm
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
|
|
# RUN: echo "SECTIONS { .text : { *(.text*) QUAD(bar) } }" > %t.script
|
|
# RUN: ld.lld --gc-sections -o %t %t.o --script %t.script
|
|
# RUN: llvm-objdump -t %t | FileCheck %s
|
|
|
|
# CHECK: 0000000000000008 g .rodata.bar 0000000000000000 bar
|
|
|
|
.section .rodata.bar
|
|
.quad 0x1122334455667788
|
|
.global bar
|
|
bar:
|
|
|
|
.section .text
|
|
.global _start
|
|
_start:
|
|
nop
|