Fix ffs().

This commit is contained in:
michal
2007-08-29 21:40:18 +01:00
parent 874b926560
commit 5c337508fe

9
src/mesa/pipe/p_util.h Normal file → Executable file
View File

@@ -39,10 +39,10 @@
#define Elements(x) sizeof(x)/sizeof(*(x))
/**
* Return pointer aligned to next multiple of 16 bytes.
* Return a pointer aligned to next multiple of 16 bytes.
*/
static INLINE void *
align16(void *unaligned)
align16( void *unaligned )
{
union {
void *p;
@@ -59,7 +59,12 @@ static INLINE unsigned ffs( unsigned u )
{
unsigned i;
if( u == 0 ) {
return 0;
}
__asm bsf eax, [u]
__asm inc eax
__asm mov [i], eax
return i;