23 lines
744 B
ArmAsm
23 lines
744 B
ArmAsm
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
|
# RUN: echo "PHDRS { \
|
|
# RUN: ph_write PT_LOAD FLAGS(2); \
|
|
# RUN: ph_exec PT_LOAD FLAGS(1); \
|
|
# RUN: } \
|
|
# RUN: SECTIONS { \
|
|
# RUN: .bar : { *(.bar) } : ph_exec \
|
|
# RUN: .foo : { *(.foo) } \
|
|
# RUN: .text : { *(.text) } : ph_write \
|
|
# RUN: }" > %t.script
|
|
# RUN: ld.lld --hash-style=sysv -o %t1 --script %t.script \
|
|
# RUN: %t.o -shared
|
|
# RUN: llvm-readobj -elf-output-style=GNU -l %t1 | FileCheck %s
|
|
|
|
# CHECK: Segment Sections...
|
|
# CHECK-NEXT: 00 .text .dynsym .hash .dynstr .dynamic
|
|
# CHECK-NEXT: 01 .foo
|
|
|
|
.quad 0
|
|
.section .foo,"ax"
|
|
.quad 0
|