Skip to content

Commit 9be0c5c

Browse files
committed
Fix typo
1 parent 7e361b6 commit 9be0c5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/core_simd/src/masks/full_masks.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ macro_rules! define_mask {
117117
// There is a bug where LLVM appears to implement this operation with the wrong
118118
// bit order.
119119
// TODO fix this in a better way
120-
if cfg!(any(target_arch = "mips", target_arch = "mips32")) {
120+
if cfg!(any(target_arch = "mips", target_arch = "mips64")) {
121121
for x in bitmask.as_mut() {
122122
*x = x.reverse_bits();
123123
}

0 commit comments

Comments
 (0)