llvm-project/lld/test/ELF/linkerscript/memory-ignored-output-addre...

19 lines
546 B
Plaintext

# REQUIRES: x86
# RUN: echo 'nop; .data; nop' | llvm-mc -filetype=obj -triple=x86_64 - -o %t.o
# RUN: ld.lld -o %t.so --script %s %t.o
# RUN: llvm-readelf -S %t.so | FileCheck %s
# CHECK: [ 1] .text PROGBITS 0000000000042000 001000 000001
# CHECK-NEXT: [ 2] .data PROGBITS 0000000000042400 001400 000001
## Test that address expressions changes the position in a memory region.
MEMORY {
ram (wxa) : ORIGIN = 0x42000, LENGTH = 0x100000
}
SECTIONS {
.text : { *(.text*) }
data_addr = ALIGN(1024);
.data data_addr : { *(.data*) }
}