mirror of
https://github.com/mpv-player/mpv
synced 2025-03-11 08:37:59 +00:00
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:
parent
ce8f80028e
commit
2ce3fb07a3
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user