Commit fa778d53 authored by Michael Niedermayer's avatar Michael Niedermayer

workaround gcc 2.95.2 bug

Originally committed as revision 289 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b0db4198
...@@ -454,8 +454,8 @@ static int msmpeg4_pred_dc(MpegEncContext * s, int n, ...@@ -454,8 +454,8 @@ static int msmpeg4_pred_dc(MpegEncContext * s, int n,
"movl %2, %%eax \n\t" "movl %2, %%eax \n\t"
"mull %4 \n\t" "mull %4 \n\t"
"movl %%edx, %2 \n\t" "movl %%edx, %2 \n\t"
: "+r" (a), "+r" (b), "+r" (c) : "+b" (a), "+c" (b), "+D" (c)
: "g" (scale), "r" (inverse[scale]) : "g" (scale), "S" (inverse[scale])
: "%eax", "%edx" : "%eax", "%edx"
); );
#else #else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment