From 9b018d657bad447a026ac22ef101ff3d0c4cf09b Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 16 Apr 2018 13:58:26 -0700 Subject: [PATCH] Yet more fixes for libstd... --- library/stdarch/coresimd/x86/sse.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/library/stdarch/coresimd/x86/sse.rs b/library/stdarch/coresimd/x86/sse.rs index e737d40e938b..da3eccff1c60 100644 --- a/library/stdarch/coresimd/x86/sse.rs +++ b/library/stdarch/coresimd/x86/sse.rs @@ -1096,8 +1096,8 @@ pub unsafe fn _mm_movemask_ps(a: __m128) -> i32 { /// This corresponds to the `MOVHPS` / `MOVHPD` / `VMOVHPD` instructions. /// /// ```rust -/// # #![cfg_attr(not(dox), feature(cfg_target_feature))] -/// # #![cfg_attr(not(dox), feature(target_feature, stdsimd))] +/// # #![cfg_attr(not(dox), feature(cfg_target_feature, target_feature))] +/// # #![feature(stdsimd)] /// # #![cfg_attr(not(dox), no_std)] /// # #[cfg(not(dox))] /// # extern crate std as real_std; @@ -1152,8 +1152,8 @@ pub unsafe fn _mm_loadh_pi(a: __m128, p: *const __m64) -> __m128 { /// This corresponds to the `MOVLPS` / `MOVLDP` / `VMOVLDP` instructions. /// /// ```rust -/// # #![cfg_attr(not(dox), feature(cfg_target_feature))] -/// # #![cfg_attr(not(dox), feature(target_feature, stdsimd))] +/// # #![cfg_attr(not(dox), feature(cfg_target_feature, target_feature))] +/// # #![feature(stdsimd)] /// # #![cfg_attr(not(dox), no_std)] /// # #[cfg(not(dox))] /// # extern crate std as real_std;