aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-02-09 00:38:44 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-02-09 00:38:44 +0000
commitfa778d53ad88c8fd2327fd744abe8df057f13191 (patch)
tree11facca21de43c8ee98af9ba74e0bba596d307f4 /libavcodec
parentb0db41986722ef646e280902327b9ebb9b87b481 (diff)
downloadffmpeg-fa778d53ad88c8fd2327fd744abe8df057f13191.tar.gz
workaround gcc 2.95.2 bug
Originally committed as revision 289 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/msmpeg4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c
index 85436e909c..260cd26856 100644
--- a/libavcodec/msmpeg4.c
+++ b/libavcodec/msmpeg4.c
@@ -454,8 +454,8 @@ static int msmpeg4_pred_dc(MpegEncContext * s, int n,
"movl %2, %%eax \n\t"
"mull %4 \n\t"
"movl %%edx, %2 \n\t"
- : "+r" (a), "+r" (b), "+r" (c)
- : "g" (scale), "r" (inverse[scale])
+ : "+b" (a), "+c" (b), "+D" (c)
+ : "g" (scale), "S" (inverse[scale])
: "%eax", "%edx"
);
#else