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 f5a577c commit 694214bCopy full SHA for 694214b
library/stdarch/crates/core_arch/src/x86/sse41.rs
@@ -189,6 +189,7 @@ pub fn _mm_blend_ps<const IMM4: i32>(a: __m128, b: __m128) -> __m128 {
189
/// # fn main() {
190
/// # if is_x86_feature_detected!("sse4.1") {
191
/// # #[target_feature(enable = "sse4.1")]
192
+/// # #[allow(unused_unsafe)] // FIXME remove after stdarch bump in rustc
193
/// # unsafe fn worker() { unsafe {
194
/// let mut float_store = vec![1.0, 1.0, 2.0, 3.0];
195
/// let simd_floats = _mm_set_ps(2.5, 5.0, 7.5, 10.0);
0 commit comments