Change "p" asm constraints to "g", since "p" was a no longer necessary hack to

make AMD64 compilation work and ICC can not handle "p".


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21341 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2006-11-27 21:59:13 +00:00
parent 2beac8d1e7
commit 6157b0b3ea
1 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@
"mov (%%"REG_d"), %%"REG_S" \n\t"\
"jb 1b \n\t"\
:: "r" (&c->redDither),\
"r" (dest), "p" (width)\
"r" (dest), "g" (width)\
: "%"REG_a, "%"REG_d, "%"REG_S\
);
@ -164,7 +164,7 @@
"mov (%%"REG_d"), %%"REG_S" \n\t"\
"jb 1b \n\t"\
:: "r" (&c->redDither),\
"r" (dest), "p" (width)\
"r" (dest), "g" (width)\
: "%"REG_a, "%"REG_d, "%"REG_S\
);