From d25130eb236ac30698ce1c92f27b3480ba1e0718 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Wed, 16 Sep 2009 19:20:48 +0000 Subject: [PATCH] ARM: do not use movw/movt for relocatable values with PIC Originally committed as revision 19886 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/arm/asm.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/arm/asm.S b/libavcodec/arm/asm.S index 02f90152d7..06006730da 100644 --- a/libavcodec/arm/asm.S +++ b/libavcodec/arm/asm.S @@ -44,7 +44,7 @@ ELF .type \name, %function .endm .macro movrel rd, val -#if HAVE_ARMV6T2 && !CONFIG_SHARED +#if HAVE_ARMV6T2 && !CONFIG_SHARED && !CONFIG_PIC movw \rd, #:lower16:\val movt \rd, #:upper16:\val #else