Changeset 87229 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Jan 12, 2021 4:11:02 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142185
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/asm/ASMBitFirstSet-generic.cpp
r87203 r87229 46 46 { 47 47 uint32_t u32 = *(const volatile uint32_t RT_FAR *)pu; 48 if (u32 != UINT32_MAX)48 if (u32 != 0) 49 49 { 50 50 size_t const iBaseBit = ((uintptr_t)pu - (uintptr_t)pvBitmap) * 8; … … 85 85 { 86 86 uint32_t u32 = *(const volatile uint32_t RT_FAR *)pu; 87 if (u32 != UINT32_MAX)87 if (u32 != 0) 88 88 { 89 89 size_t const iBaseBit = ((uintptr_t)pu - (uintptr_t)pvBitmap) * 8;
Note:
See TracChangeset
for help on using the changeset viewer.