This is in preparation for my next change, which will introduce a relro nobits section. That requires that relro sections appear at the end of the progbits part of the r/w segment so that the relro nobits section can appear contiguously. Because of the amount of churn required in the test suite, I'm making this change separately. llvm-svn: 291523
17 lines
482 B
ArmAsm
17 lines
482 B
ArmAsm
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t
|
|
|
|
# RUN: echo "SECTIONS { foo : {*(foo)} }" > %t.script
|
|
# RUN: ld.lld -o %t1 --script %t.script %t -shared
|
|
# RUN: llvm-readobj -elf-output-style=GNU -s %t1 | FileCheck %s
|
|
|
|
# CHECK: .text {{.*}} AX
|
|
# CHECK-NEXT: .dynsym {{.*}} A
|
|
# CHECK-NEXT: .hash {{.*}} A
|
|
# CHECK-NEXT: .dynstr {{.*}} A
|
|
# CHECK-NEXT: foo {{.*}} WA
|
|
# CHECK-NEXT: .dynamic {{.*}} WA
|
|
|
|
.section foo, "aw"
|
|
.byte 0
|