mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-05 12:31:33 +00:00
Fix incorrect relocation generation. Patch by Kristof Beyls.
Fixes PR11214. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147180 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a816bf7c0d
commit
b975c27adc
@ -209,15 +209,8 @@ unsigned ARMELFObjectWriter::GetRelocTypeInner(const MCValue &Target,
|
|||||||
break;
|
break;
|
||||||
case ARM::fixup_arm_thumb_bl:
|
case ARM::fixup_arm_thumb_bl:
|
||||||
case ARM::fixup_arm_thumb_blx:
|
case ARM::fixup_arm_thumb_blx:
|
||||||
switch (Modifier) {
|
|
||||||
case MCSymbolRefExpr::VK_ARM_PLT:
|
|
||||||
Type = ELF::R_ARM_THM_CALL;
|
Type = ELF::R_ARM_THM_CALL;
|
||||||
break;
|
break;
|
||||||
default:
|
|
||||||
Type = ELF::R_ARM_NONE;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
switch ((unsigned)Fixup.getKind()) {
|
switch ((unsigned)Fixup.getKind()) {
|
||||||
|
23
test/MC/ARM/elf-thumbfunc-reloc.s
Normal file
23
test/MC/ARM/elf-thumbfunc-reloc.s
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
@@ test st_value bit 0 of thumb function
|
||||||
|
@ RUN: llvm-mc %s -triple=arm-freebsd-eabi -filetype=obj -o - | \
|
||||||
|
@ RUN: elf-dump | FileCheck %s
|
||||||
|
|
||||||
|
|
||||||
|
.syntax unified
|
||||||
|
.text
|
||||||
|
.globl f
|
||||||
|
.align 2
|
||||||
|
.type f,%function
|
||||||
|
.code 16
|
||||||
|
.thumb_func
|
||||||
|
f:
|
||||||
|
push {r7, lr}
|
||||||
|
mov r7, sp
|
||||||
|
bl g
|
||||||
|
pop {r7, pc}
|
||||||
|
|
||||||
|
@@ make sure an R_ARM_THM_CALL relocation is generated for the call to g
|
||||||
|
@CHECK: ('_relocations', [
|
||||||
|
@CHECK: (('r_offset', 0x00000004)
|
||||||
|
@CHECK-NEXT: ('r_sym', 0x{{[0-9a-fA-F]+}})
|
||||||
|
@CHECK-NEXT: ('r_type', 0x0a)
|
Loading…
Reference in New Issue
Block a user