Mercurial > mplayer.hg
changeset 15632:e813a3e431a8
move unchanged registers back to input spec
author | henry |
---|---|
date | Sat, 04 Jun 2005 07:58:40 +0000 |
parents | d5a95e6f5f07 |
children | 524d306ce0f3 |
files | libmpcodecs/vf_fspp.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpcodecs/vf_fspp.c Sat Jun 04 07:05:02 2005 +0000 +++ b/libmpcodecs/vf_fspp.c Sat Jun 04 07:58:40 2005 +0000 @@ -1591,8 +1591,8 @@ "jnz 1b \n\t" "5: \n\t" - : "+S"(data), "+D"(output), "+c"(cnt), "+d"(thr_adr)// input regs - : + : "+S"(data), "+D"(output), "+c"(cnt)// input regs + : "d"(thr_adr) : "%eax" ); } @@ -2103,8 +2103,8 @@ "decl %%ecx \n\t" "jnz 6b \n\t" - : "+S"(pixels), "+D"(data), "+a"(line_size), "+c"(cnt) //input regs - : + : "+S"(pixels), "+D"(data), "+c"(cnt) //input regs + : "a"(line_size) : "%edx"); }