- Update the code in bitops.h so it will compile.
This commit is contained in:
parent
4dc3c174db
commit
e8dacb6ba8
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue