[llvm] Do not replace dead constant references in metadata with undef
[llvm-project.git] / lld / test / ELF / linkerscript / memory-include.test
blobc233a81e2298c5ff39842c20008111388726b96e
1 # REQUIRES: x86
3 # RUN: echo '.section .text,"ax"; .global _start; nop' > %t.s
4 # RUN: echo '.section .data,"aw"; .quad 0' >> %t.s
5 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %t.s -o %t.o
7 # RUN: rm -rf %t.dir && mkdir -p %t.dir
8 # RUN: echo "RAM2 (rwx): ORIGIN = 0x3000, LENGTH = 0x100" > %t.dir/inc.script
9 # RUN: ld.lld -o %t.elf --script %s %t.o -L %t.dir
10 # RUN: llvm-objdump --section-headers %t.elf | FileCheck %s
11 # CHECK: .data         00000008 0000000000002000 DATA
12 # CHECK: .data2        00000008 0000000000003000 DATA
14 MEMORY {
15   ROM (rwx): ORIGIN = 0x1000, LENGTH = 0x100
16   RAM (rwx): ORIGIN = 0x2000, LENGTH = 0x100
17   INCLUDE "inc.script"
20 SECTIONS {
21   .text : { *(.text*) } > ROM
22   .data : { *(.data*) } > RAM
23   .data2 : { QUAD(0) } > RAM2