From 2d16394f972dca8cc5e5b5bf9ab0b343a6239b76 Mon Sep 17 00:00:00 2001 From: Kim Nguyen Date: Tue, 21 Jun 2011 00:18:54 +0200 Subject: [PATCH] ppc32: Fix movrel Fixes ticket272 --- libavcodec/ppc/asm.S | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libavcodec/ppc/asm.S b/libavcodec/ppc/asm.S index e372d53c60..2706d6b1d8 100644 --- a/libavcodec/ppc/asm.S +++ b/libavcodec/ppc/asm.S @@ -67,7 +67,11 @@ X(\name): .macro movrel rd, sym #if CONFIG_PIC - lwz \rd, \sym@got(r2) + bcl 20, 31, lab_pic_\@ +lab_pic_\@: + mflr \rd + addis \rd, \rd, (\sym - lab_pic_\@)@ha + addi \rd, \rd, (\sym - lab_pic_\@)@l #else lis \rd, \sym@ha la \rd, \sym@l(\rd)