[llvm] Do not replace dead constant references in metadata with undef
[llvm-project.git] / lld / test / ELF / linkerscript / memory-ignored-dot-assign.test
blob0e7c908816dfb13437b97dd24a72b42c4339cc7e
1 # REQUIRES: x86
2 # RUN: echo 'nop; .data; nop' | llvm-mc -filetype=obj -triple=x86_64 - -o %t.o
3 # RUN: ld.lld -o %t.so --script %s %t.o
4 # RUN: llvm-readelf -S %t.so | FileCheck %s
6 # CHECK:      [ 1] .text PROGBITS 0000000000042000 001000 000001
7 # CHECK-NEXT: [ 2] .data PROGBITS 0000000000042001 001001 000001
9 ## Test that assigning to Dot does not change the position in a memory region.
11 MEMORY {
12   ram (wxa) : ORIGIN = 0x42000, LENGTH = 0x100000
14 SECTIONS {
15   .text : { *(.text*) }
16   . += 0x2000;
17   .data : { *(.data*) }