1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

ARM: simplify movrel definition as CONFIG_PIC is now set for shared libs

Originally committed as revision 20204 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2009-10-11 10:15:48 +00:00
parent 1fce58c2fc
commit 3e6015cc18

View File

@ -45,7 +45,7 @@ ELF .type \name, %function
.endm
.macro movrel rd, val
#if HAVE_ARMV6T2 && !CONFIG_SHARED && !CONFIG_PIC
#if HAVE_ARMV6T2 && !CONFIG_PIC
movw \rd, #:lower16:\val
movt \rd, #:upper16:\val
#else