diff options
author | nick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-01-29 09:57:21 +0000 |
---|---|---|
committer | nick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-01-29 09:57:21 +0000 |
commit | a9be09b5873b15f533261fa47d3946dcdb399902 (patch) | |
tree | 6843e90e655c95a4bacc1a982dfb9911976a19d7 /linux | |
parent | 752f3e8a3d3e02c40f78f74e5b1cd470f3a7b9b7 (diff) |
fixing assembly bug. By Thierry Vignaud <tvignaud@mandrakesoft.com>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4406 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'linux')
-rw-r--r-- | linux/vbelib.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/vbelib.c b/linux/vbelib.c index eda229834b..510ce807a3 100644 --- a/linux/vbelib.c +++ b/linux/vbelib.c @@ -30,9 +30,9 @@ static inline int VERR(const void *p) "xorl %0, %0\n\t" "verr %1\n\t" "setnz %b0" - :"=r"(retval) + :"=q"(retval) :"m"(*(unsigned char *)p) - :"memory"); + :"memory","cc"); return retval; } @@ -44,9 +44,9 @@ static inline int VERW(const void *p) "xorl %0, %0\n\t" "verw %1\n\t" "setnz %b0" - :"=r"(retval) + :"=q"(retval) :"m"(*(unsigned char *)p) - :"memory"); + :"memory","cc"); return retval; } #endif |