Index: lld/trunk/ELF/LTO.cpp =================================================================== --- lld/trunk/ELF/LTO.cpp +++ lld/trunk/ELF/LTO.cpp @@ -154,8 +154,14 @@ R.VisibleToRegularObj = Config->Relocatable || Sym->IsUsedInRegularObj || (R.Prevailing && Sym->includeInDynsym()) || UsedStartStop.count(ObjSym.getSectionName()); + const auto *DR = dyn_cast(Sym); R.FinalDefinitionInLinkageUnit = - Sym->isDefined() && (IsExecutable || Sym->Visibility != STV_DEFAULT); + (IsExecutable || Sym->Visibility != STV_DEFAULT) && DR && + // Skip absolute symbols from ELF objects, otherwise PC-rel relocations + // will be generated by for them, triggering linker errors. + // Symbol section is always null for bitcode symbols, hence the check + // for isElf(). + !(Sym->File && Sym->File->isElf() && DR->Section == nullptr); if (R.Prevailing) undefine(Sym); Index: lld/trunk/test/ELF/lto/Inputs/absolute.s =================================================================== --- lld/trunk/test/ELF/lto/Inputs/absolute.s +++ lld/trunk/test/ELF/lto/Inputs/absolute.s @@ -0,0 +1,2 @@ +.globl blah + blah = 0xdeadbeef Index: lld/trunk/test/ELF/lto/abs-resol.ll =================================================================== --- lld/trunk/test/ELF/lto/abs-resol.ll +++ lld/trunk/test/ELF/lto/abs-resol.ll @@ -0,0 +1,14 @@ +; REQUIRES: x86 + +; RUN: llvm-as %s -o %t.o +; RUN: llvm-mc -triple=x86_64-pc-linux %p/Inputs/absolute.s -o %t2.o -filetype=obj +; RUN: ld.lld %t.o %t2.o -o %t.out -pie + +target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-unknown-linux-gnu" + +@blah = external global i8, align 1 + +define i8* @_start() { + ret i8* @blah +}