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.
21 lines
737 B
21 lines
737 B
7 months ago
|
# REQUIRES: x86
|
||
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %p/Inputs/addr.s -o %t
|
||
|
# RUN: ld.lld %t --script %s -o %t1
|
||
|
# RUN: llvm-objdump --section-headers %t1 | FileCheck %s
|
||
|
|
||
|
# CHECK: Sections:
|
||
|
# CHECK-NEXT: Idx Name Size VMA Type
|
||
|
# CHECK-NEXT: 0 00000000 0000000000000000
|
||
|
# CHECK-NEXT: 1 .text 00000000 0000000000001000 TEXT
|
||
|
# CHECK-NEXT: 2 .foo.1 00000008 0000000000001000 DATA
|
||
|
# CHECK-NEXT: 3 .foo.2 00000008 0000000000001100 DATA
|
||
|
# CHECK-NEXT: 4 .foo.3 00000008 0000000000001108 DATA
|
||
|
|
||
|
SECTIONS {
|
||
|
. = 0x1000;
|
||
|
.text : { *(.text*) }
|
||
|
.foo.1 : { *(.foo.1) }
|
||
|
.foo.2 ADDR(.foo.1) + 0x100 : { *(.foo.2) }
|
||
|
.foo.3 : { *(.foo.3) }
|
||
|
}
|