mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
Force emit a relocation for @gnu_indirect_function symbols so that the indirect
resolution works. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198780 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
adc537e74b
commit
edc4b60fca
@ -1645,7 +1645,7 @@ ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
|
||||
const MCFragment &FB,
|
||||
bool InSet,
|
||||
bool IsPCRel) const {
|
||||
if (DataA.getFlags() & ELF_STB_Weak)
|
||||
if (DataA.getFlags() & ELF_STB_Weak || MCELF::GetType(DataA) == ELF::STT_GNU_IFUNC)
|
||||
return false;
|
||||
return MCObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
|
||||
Asm, DataA, FB,InSet, IsPCRel);
|
||||
|
16
test/MC/ELF/ifunc-reloc.s
Normal file
16
test/MC/ELF/ifunc-reloc.s
Normal file
@ -0,0 +1,16 @@
|
||||
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -r | FileCheck %s
|
||||
.global sym
|
||||
.type sym, @gnu_indirect_function
|
||||
alias:
|
||||
.global alias
|
||||
.type alias, @function
|
||||
.set sym, alias
|
||||
|
||||
|
||||
callq sym
|
||||
|
||||
// CHECK: Relocations [
|
||||
// CHECK-NEXT: Section (2) .rela.text {
|
||||
// CHECK-NEXT: 0x1 R_X86_64_PC32 sym 0xFFFFFFFFFFFFFFFC
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
Loading…
x
Reference in New Issue
Block a user