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 } ```  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...