diff options
author | Uoti Urpala <uoti.urpala@pp1.inet.fi> | 2006-08-15 14:50:24 +0000 |
---|---|---|
committer | Uoti Urpala <uoti.urpala@pp1.inet.fi> | 2006-08-15 14:50:24 +0000 |
commit | 91d0bda26db45dc23ac9acbb1df0c851817692d3 (patch) | |
tree | 1019b16d1ae4d22af0cdd31c30764153dd41c69f | |
parent | 83c89c7885777a0d81e062930590e70187ea1066 (diff) | |
download | ffmpeg-91d0bda26db45dc23ac9acbb1df0c851817692d3.tar.gz |
Fix compilation with -no-PIC and without -fomit-frame-pointer (used by
--enable-debug).
Fix from Jason Tackaberry for his previous -fPIC patch.
Originally committed as revision 19406 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/swscale_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale_template.c b/libswscale/swscale_template.c index ac95e724a6..b9cfc3c5b1 100644 --- a/libswscale/swscale_template.c +++ b/libswscale/swscale_template.c @@ -2752,7 +2752,7 @@ FUNNY_UV_CODE #if defined(PIC) ,"m" (ebxsave) #endif - : "%"REG_a, "%"REG_BP, "%"REG_c, "%"REG_d, "%"REG_S, "%"REG_D + : "%"REG_a, "%"REG_c, "%"REG_d, "%"REG_S, "%"REG_D #if !defined(PIC) ,"%"REG_b #endif |