shiftTooManyBitsSigned

This commit is contained in:
gtsoul-tech
2024-04-24 11:13:28 +03:00
parent ba3603b285
commit 3ced2f7ebf
2 changed files with 3 additions and 3 deletions

View File

@@ -508,7 +508,7 @@ TEST(SuperVectorUtilsTest,Movemask256c){
u8 vec2[32] = {0};
u32 r = rand() % 100 + 1;
for(int i=0; i<32; i++) {
if (r & (1 << i)) {
if (r & (1U << i)) {
vec[i] = 0xff;
}
}