Skip to content

Commit 778c070

Browse files
committed
Replace _mm_movemask_pi8 with the fallback_impl
This has to be done, because `_mm_movemask_pi8` got removed from stdarch in rust-lang/stdarch#890
1 parent 93af7ef commit 778c070

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

src/codegen/reductions/mask/x86.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,7 @@ mod avx2;
1919
/// x86 64-bit m8x8 implementation
2020
macro_rules! x86_m8x8_impl {
2121
($id:ident) => {
22-
cfg_if! {
23-
if #[cfg(all(target_arch = "x86_64", target_feature = "sse"))] {
24-
x86_m8x8_sse_impl!($id);
25-
} else {
26-
fallback_impl!($id);
27-
}
28-
}
22+
fallback_impl!($id);
2923
};
3024
}
3125

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,6 @@
209209
link_llvm_intrinsics,
210210
core_intrinsics,
211211
stmt_expr_attributes,
212-
mmx_target_feature,
213212
crate_visibility_modifier,
214213
custom_inner_attributes
215214
)]

0 commit comments

Comments
 (0)