added ecx to clobber list

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14621 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2005-01-31 11:22:11 +00:00
parent ce8f80028e
commit 2ce3fb07a3
1 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ static int diff_y_mmx(unsigned char *a, unsigned char *b, int s)
"emms \n\t"
: "=a" (ret)
: "S" (a), "D" (b), "a" (s)
: "%edx"
: "%ecx", "%edx"
);
return ret;
}
@ -143,7 +143,7 @@ static int licomb_y_mmx(unsigned char *a, unsigned char *b, int s)
"emms \n\t"
: "=a" (ret)
: "S" (a), "D" (b), "a" (s)
: "%edx"
: "%ecx", "%edx"
);
return ret;
}