[llvm] Do not replace dead constant references in metadata with undef
[llvm-project.git] / lld / test / ELF / linkerscript / address-expr-symbols.s
blob40ad1bb328361933d9c02869dbab16a74cde5d22
1 # REQUIRES: x86
2 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
4 # RUN: echo "SECTIONS { .bar (foo) : { } };" > %t.script
5 # RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s
6 # CHECK: symbol not found: foo
8 # RUN: echo "SECTIONS { .bar : AT(foo) { } };" > %t.script
9 # RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s
11 # RUN: echo "SECTIONS { .bar : ALIGN(foo) { } };" > %t.script
12 # RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s
14 # RUN: echo "SECTIONS { .bar : SUBALIGN(foo) { } };" > %t.script
15 # RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s