Fixed bug with gcc 2.95.2

svn path=/trunk/; revision=763
This commit is contained in:
Eric Kohl 1999-11-09 18:15:16 +00:00
parent 58b907b668
commit d431c0fa6d

View file

@ -31,7 +31,8 @@ __asm__ __volatile__ (
"popl %%edx \n\t"
:"=a" (__res):"c" (unNew),"d" (unMask):"ax", "dx", "cx");
:"=r" (__res):"r" (unNew),"r" (unMask): "ax", "dx", "cx");
/* :"=a" (__res):"c" (unNew),"d" (unMask):"ax", "dx", "cx"); */
return __res;
}