You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
ARM: fix Thumb PIC on Apple
LDR with register offset and PC as base register is not available in the Thumb instruction set so the addition must be done separately. Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
@@ -141,7 +141,9 @@ ELF .size \name, . - \name
|
||||
ldr \rd, .Lpicoff\@
|
||||
.Lpic\@:
|
||||
.if \indir
|
||||
ldr \rd, [pc, \rd]
|
||||
A ldr \rd, [pc, \rd]
|
||||
T add \rd, pc
|
||||
T ldr \rd, [\rd]
|
||||
.else
|
||||
add \rd, pc
|
||||
.endif
|
||||
|
Reference in New Issue
Block a user