We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6585c7 commit 55781f2Copy full SHA for 55781f2
src/api/bitmask.rs
@@ -17,13 +17,10 @@ macro_rules! impl_bitmask {
17
test_if! {
18
$test_tt:
19
paste::item! {
20
- #[cfg(not(any(
+ #[cfg(not(
21
// 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
- )))]
+ target_endian = "big"
+ ))]
27
pub mod [<$id _bitmask>] {
28
use super::*;
29
#[cfg_attr(not(target_arch = "wasm32"), test)]
0 commit comments