WCC1998

Results 2 comments of WCC1998

Seems like it's the function below runs incorrect: ``` BMFORCEINLINE unsigned int bsr_asm32(unsigned int value) BMNOEXCEPT { __asm bsr eax, value } ``` ![Image](https://github.com/user-attachments/assets/c397e99f-cb67-4ab8-aaee-883772c3e1db) It give a wrong result of...

After modify those function, it finally runs correct: ``` BMFORCEINLINE unsigned int bsr_asm32(unsigned int value) BMNOEXCEPT { // __asm bsr eax, value return 31u - std::countl_zero(value); } BMFORCEINLINE unsigned int...