Yet more fixes for libstd...

This commit is contained in:
Alex Crichton 2018-04-16 13:58:26 -07:00
parent 6f8c6d9251
commit 9b018d657b

View file

@ -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;