mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
0d1789c768
In Thumb1 mode, bl instruction might be selected for branches between basic blocks in the function if the offset is greater than 2KB. However, this might cause SEGV because the destination symbol is not marked as thumb function and the execution mode will be reset to ARM mode. Since we are sure that these symbols are in the same data fragment, we can simply resolve these local symbols, and don't emit any relocation information for this bl instruction. llvm-svn: 200842
27 lines
409 B
ArmAsm
27 lines
409 B
ArmAsm
@ RUN: llvm-mc < %s -triple thumbv5-linux-gnueabi -filetype=obj -o - \
|
|
@ RUN: | llvm-readobj -r | FileCheck %s
|
|
.syntax unified
|
|
|
|
.text
|
|
.align 2
|
|
.globl main
|
|
.type main,%function
|
|
.thumb_func
|
|
main:
|
|
bl end
|
|
.space 8192
|
|
end:
|
|
bl main2
|
|
bx lr
|
|
|
|
.text
|
|
.align 2
|
|
.globl main2
|
|
.type main2,%function
|
|
.thumb_func
|
|
main2:
|
|
bx lr
|
|
|
|
@ CHECK-NOT: 0x0 R_ARM_THM_CALL end 0x0
|
|
@ CHECK: 0x2004 R_ARM_THM_CALL main2 0x0
|