GC code contains following logic uncovered by tests: for (StringRef S : Config->Undefined) MarkSymbol(Symtab->find(S)); As far I can tell we never had test for that before, patch fixes it. Differential revision: https://reviews.llvm.org/D36519 llvm-svn: 310556
11 lines
230 B
ArmAsm
11 lines
230 B
ArmAsm
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
|
|
# RUN: ld.lld %t -o %t1 --gc-sections --undefined=foo
|
|
# RUN: llvm-readobj -t %t1 | FileCheck %s
|
|
|
|
# CHECK: foo
|
|
|
|
.section .foo,"ax"
|
|
.global foo
|
|
foo:
|