Commit e3209bc9 authored by michaelni's avatar michaelni

workaround gcc 2.95.2 bug


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@289 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 07d767be
...@@ -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