Changeset 84992 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Jun 29, 2020 1:28:48 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/asm/asm-fake.cpp
r82968 r84992 464 464 RTDECL(unsigned) ASMBitLastSetU32(uint32_t u32) 465 465 { 466 int32_t iBit = 32;466 uint32_t iBit = 32; 467 467 while (iBit-- > 0) 468 468 if (u32 & RT_BIT_32(iBit)) … … 482 482 RTDECL(unsigned) ASMBitLastSetU64(uint64_t u64) 483 483 { 484 int32_t iBit = 64;484 uint32_t iBit = 64; 485 485 while (iBit-- > 0) 486 486 if (u64 & RT_BIT_64(iBit))
Note:
See TracChangeset
for help on using the changeset viewer.