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
356 B
14 lines
356 B
# REQUIRES: x86
|
|
## Create a readonly PT_LOAD in the absence of PHDRS.
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux /dev/null -o %t
|
|
# RUN: ld.lld -o %t1 --script %s %t -shared
|
|
# RUN: llvm-readelf -l %t1 | FileCheck %s
|
|
|
|
SECTIONS {
|
|
}
|
|
|
|
# CHECK: Type {{.*}} Flg Align
|
|
# CHECK-NEXT: LOAD {{.*}} R 0x1000
|
|
# CHECK-NEXT: LOAD {{.*}} RW 0x1000
|