[Mplayer-cvslog] CVS: main/linux vbelib.c,1.18,1.19
Nick Kurshev
nick at mplayer.dev.hu
Tue Jan 29 10:57:27 CET 2002
Update of /cvsroot/mplayer/main/linux
In directory mplayer:/var/tmp.root/cvs-serv13877/main/linux
Modified Files:
vbelib.c
Log Message:
fixing assembly bug. By Thierry Vignaud <tvignaud at mandrakesoft.com>
Index: vbelib.c
===================================================================
RCS file: /cvsroot/mplayer/main/linux/vbelib.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- vbelib.c 20 Nov 2001 07:55:34 -0000 1.18
+++ vbelib.c 29 Jan 2002 09:57:21 -0000 1.19
@@ -30,9 +30,9 @@
"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 @@
"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
More information about the MPlayer-cvslog
mailing list