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 bef1828 commit 4fe138cCopy full SHA for 4fe138c
src/librustc_platform_intrinsics/x86.rs
@@ -34,6 +34,8 @@ pub fn find<'tcx>(_tcx: &ty::ctxt<'tcx>, name: &str) -> Option<Intrinsic> {
34
35
"mm_min_ps" => p!("sse.min.ps", (f32x4, f32x4) -> f32x4),
36
"mm_min_pd" => p!("sse2.min.pd", (f64x2, f64x2) -> f64x2),
37
+
38
+ "mm_shuffle_epi8" => p!("ssse3.pshuf.b.128", (i8x16, i8x16) -> i8x16),
39
_ => return None
40
})
41
}
0 commit comments