You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
372 B
14 lines
372 B
7 months ago
|
# REQUIRES: arm
|
||
|
# RUN: echo ".fnstart; bx lr; .cantunwind; .fnend" \
|
||
|
# RUN: | llvm-mc -filetype=obj -triple=armv7a-none-linux-gnueabi - -o %t.o
|
||
|
# RUN: ld.lld -T %s %t.o -shared -o %t.so
|
||
|
# RUN: llvm-readobj --program-headers %t.so | FileCheck %s
|
||
|
|
||
|
# CHECK: Type: PT_ARM_EXIDX
|
||
|
|
||
|
PHDRS { ph_text PT_LOAD; }
|
||
|
SECTIONS {
|
||
|
. = SIZEOF_HEADERS;
|
||
|
.text : { *(.text) } : ph_text
|
||
|
}
|