- Update the code in bitops.h so it will compile.

This commit is contained in:
Eric W. Biederman 2002-07-18 21:58:33 +00:00
commit e8dacb6ba8

View file

@ -13,7 +13,7 @@ static inline unsigned long log2(unsigned long x)
"jnz 1f\n\t"
"movl $-1, %0\n\t"
"1:\n\t"
: "=r" (r) : "g" (x));
: "=r" (r) : "r" (x));
return r;
}