[llvm] Do not replace dead constant references in metadata with undef
[llvm-project.git] / lld / test / ELF / linkerscript / constructor.test
blobc4098245d652b2baea3e6faa1e06879c095e5585
1 # REQUIRES: x86
2 # RUN: echo '.section foo, "a"; .byte 0' \
3 # RUN:   | llvm-mc -filetype=obj -triple=x86_64-unknown-linux - -o %t.o
4 # RUN: ld.lld -o %t1 --script %s %t.o
6 # RUN: llvm-objdump --section-headers %t1 | FileCheck %s
7 # CHECK:      Sections:
8 # CHECK-NEXT: Idx Name          Size
9 # CHECK-NEXT:   0               00000000
10 # CHECK-NEXT:   1 foo           00000001
12 SECTIONS {
13   foo : {
14     *(.foo)
15     CONSTRUCTORS
16   }