Skip to content

Commit e8b3d56

Browse files
committed
test bitmasks smaller than a byte
1 parent 1cb9ccb commit e8b3d56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/pass/portable-simd.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ fn simd_mask() {
201201
let values = [false, false, false, true];
202202
let mask = Mask::<i64, 4>::from_array(values);
203203
let bitmask = mask.to_bitmask();
204-
// FIXME fails until https://github.com/rust-lang/portable-simd/pull/267 lands: assert_eq!(bitmask, 0b1000);
204+
assert_eq!(bitmask, 0b1000);
205205
assert_eq!(Mask::<i64, 4>::from_bitmask(bitmask), mask);
206206
}
207207

0 commit comments

Comments
 (0)