[llvm] Do not replace dead constant references in metadata with undef
[llvm-project.git] / lld / test / ELF / linkerscript / memory-at.test
blobe478e941e1f57f350653530a0f94e005c7d8d92d
1 # REQUIRES: x86
2 # RUN: echo '.section .text,"ax"; .quad 0' > %t.s
3 # RUN: echo '.section .data,"aw"; .quad 0' >> %t.s
4 # RUN: llvm-mc -filetype=obj -triple=x86_64 %t.s -o %t.o
5 # RUN: ld.lld %t.o --script %s -o %t
6 # RUN: llvm-readelf -l %t | FileCheck %s
8 # CHECK:      Type  Offset   VirtAddr           PhysAddr           FileSiz  MemSiz   Flg Align
9 # CHECK-NEXT: LOAD  0x001000 0x0000000000001000 0x0000000000001000 0x000008 0x000008 R E 0x1000
10 # CHECK-NEXT: LOAD  0x002000 0x0000000000002000 0x0000000000001008 0x000008 0x000008 RW  0x1000
12 MEMORY {
13   FLASH (rx) : ORIGIN = 0x1000, LENGTH = 0x100
14   RAM (rwx)  : ORIGIN = 0x2000, LENGTH = 0x100
17 SECTIONS {
18  .text : { *(.text*) } > FLASH
19  __etext = .;
20  .data : AT (__etext) { *(.data*) } > RAM