forked from OSchip/llvm-project
46 lines
1.0 KiB
Plaintext
46 lines
1.0 KiB
Plaintext
/*
|
|
Test sections put to different segments.
|
|
|
|
RUN: yaml2obj -format=elf %p/Inputs/simple.o.yaml -o=%t.o
|
|
|
|
RUN: lld -flavor old-gnu -target x86_64 -T %s %t.o -static -o %t1
|
|
RUN: llvm-objdump -section-headers %t1 | FileCheck -check-prefix DIFF-PHDRS-SECS %s
|
|
RUN: llvm-readobj -program-headers %t1 | FileCheck -check-prefix DIFF-PHDRS-HDRS %s
|
|
*/
|
|
|
|
ENTRY(_start)
|
|
|
|
PHDRS
|
|
{
|
|
text PT_LOAD;
|
|
data PT_LOAD;
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : { *(.text) } :text
|
|
.data : { *(.data) } :data
|
|
}
|
|
|
|
/*
|
|
DIFF-PHDRS-SECS: .text {{[0-9a-f]+}} 00000000004000e8
|
|
DIFF-PHDRS-SECS: .data {{[0-9a-f]+}} 0000000000401000
|
|
|
|
DIFF-PHDRS-HDRS: ProgramHeader {
|
|
DIFF-PHDRS-HDRS: Type: PT_LOAD (0x1)
|
|
DIFF-PHDRS-HDRS: VirtualAddress: 0x400000
|
|
DIFF-PHDRS-HDRS: Flags [ (0x5)
|
|
DIFF-PHDRS-HDRS: PF_R (0x4)
|
|
DIFF-PHDRS-HDRS: PF_X (0x1)
|
|
DIFF-PHDRS-HDRS: ]
|
|
DIFF-PHDRS-HDRS: }
|
|
DIFF-PHDRS-HDRS: ProgramHeader {
|
|
DIFF-PHDRS-HDRS: Type: PT_LOAD (0x1)
|
|
DIFF-PHDRS-HDRS: VirtualAddress: 0x401000
|
|
DIFF-PHDRS-HDRS: Flags [ (0x6)
|
|
DIFF-PHDRS-HDRS: PF_R (0x4)
|
|
DIFF-PHDRS-HDRS: PF_W (0x2)
|
|
DIFF-PHDRS-HDRS: ]
|
|
DIFF-PHDRS-HDRS: }
|
|
*/
|