[llvm] Do not replace dead constant references in metadata with undef
[llvm-project.git] / lld / test / ELF / linkerscript / bss-fill.test
blobb7ed47656172f0b77c3956d9a31987c5b4910b6b
1 # REQUIRES: x86
2 # RUN: echo '.section .bss,"",@nobits; .short 0' \
3 # RUN:   | llvm-mc -filetype=obj -triple=x86_64-unknown-linux - -o %t.o
4 # RUN: ld.lld -o %t --script %s %t.o
6 ## Check we do not crash.
8 SECTIONS {
9  .bss : {
10    . += 0x10000;
11    *(.bss)
12  } =0xFF