Skip to content

Commit 55781f2

Browse files
Disable bitmask tests on bigendian
1 parent d6585c7 commit 55781f2

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/api/bitmask.rs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,10 @@ macro_rules! impl_bitmask {
1717
test_if! {
1818
$test_tt:
1919
paste::item! {
20-
#[cfg(not(any(
20+
#[cfg(not(
2121
// FIXME: https://github.com/rust-lang-nursery/packed_simd/issues/210
22-
all(target_arch = "mips", target_endian = "big"),
23-
all(target_arch = "mips64", target_endian = "big"),
24-
target_arch = "sparc64",
25-
target_arch = "s390x",
26-
)))]
22+
target_endian = "big"
23+
))]
2724
pub mod [<$id _bitmask>] {
2825
use super::*;
2926
#[cfg_attr(not(target_arch = "wasm32"), test)]

0 commit comments

Comments
 (0)