Skip to content

Commit effdcd0

Browse files
committed
Yet more fixes for libstd...
1 parent 53c8790 commit effdcd0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

coresimd/x86/sse.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1096,8 +1096,8 @@ pub unsafe fn _mm_movemask_ps(a: __m128) -> i32 {
10961096
/// This corresponds to the `MOVHPS` / `MOVHPD` / `VMOVHPD` instructions.
10971097
///
10981098
/// ```rust
1099-
/// # #![cfg_attr(not(dox), feature(cfg_target_feature))]
1100-
/// # #![cfg_attr(not(dox), feature(target_feature, stdsimd))]
1099+
/// # #![cfg_attr(not(dox), feature(cfg_target_feature, target_feature))]
1100+
/// # #![feature(stdsimd)]
11011101
/// # #![cfg_attr(not(dox), no_std)]
11021102
/// # #[cfg(not(dox))]
11031103
/// # extern crate std as real_std;
@@ -1152,8 +1152,8 @@ pub unsafe fn _mm_loadh_pi(a: __m128, p: *const __m64) -> __m128 {
11521152
/// This corresponds to the `MOVLPS` / `MOVLDP` / `VMOVLDP` instructions.
11531153
///
11541154
/// ```rust
1155-
/// # #![cfg_attr(not(dox), feature(cfg_target_feature))]
1156-
/// # #![cfg_attr(not(dox), feature(target_feature, stdsimd))]
1155+
/// # #![cfg_attr(not(dox), feature(cfg_target_feature, target_feature))]
1156+
/// # #![feature(stdsimd)]
11571157
/// # #![cfg_attr(not(dox), no_std)]
11581158
/// # #[cfg(not(dox))]
11591159
/// # extern crate std as real_std;

0 commit comments

Comments
 (0)