Skip to content

Commit 9c04fa0

Browse files
Fix typo stdimd -> stdsimd (rust-lang#915)
1 parent 291395d commit 9c04fa0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

crates/core_arch/src/wasm32/simd128.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ types! {
2424
}
2525

2626
#[allow(non_camel_case_types)]
27-
#[unstable(feature = "stdimd_internal", issue = "none")]
27+
#[unstable(feature = "stdsimd_internal", issue = "none")]
2828
pub(crate) trait v128Ext: Sized {
2929
unsafe fn as_v128(self) -> v128;
3030

crates/core_arch/src/x86/mod.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ mod test;
324324
pub use self::test::*;
325325

326326
#[allow(non_camel_case_types)]
327-
#[unstable(feature = "stdimd_internal", issue = "none")]
327+
#[unstable(feature = "stdsimd_internal", issue = "none")]
328328
pub(crate) trait m128iExt: Sized {
329329
fn as_m128i(self) -> __m128i;
330330

@@ -377,7 +377,7 @@ impl m128iExt for __m128i {
377377
}
378378

379379
#[allow(non_camel_case_types)]
380-
#[unstable(feature = "stdimd_internal", issue = "none")]
380+
#[unstable(feature = "stdsimd_internal", issue = "none")]
381381
pub(crate) trait m256iExt: Sized {
382382
fn as_m256i(self) -> __m256i;
383383

@@ -430,7 +430,7 @@ impl m256iExt for __m256i {
430430
}
431431

432432
#[allow(non_camel_case_types)]
433-
#[unstable(feature = "stdimd_internal", issue = "none")]
433+
#[unstable(feature = "stdsimd_internal", issue = "none")]
434434
pub(crate) trait m256Ext: Sized {
435435
fn as_m256(self) -> __m256;
436436

@@ -448,7 +448,7 @@ impl m256Ext for __m256 {
448448
}
449449

450450
#[allow(non_camel_case_types)]
451-
#[unstable(feature = "stdimd_internal", issue = "none")]
451+
#[unstable(feature = "stdsimd_internal", issue = "none")]
452452
pub(crate) trait m512iExt: Sized {
453453
fn as_m512i(self) -> __m512i;
454454

@@ -481,7 +481,7 @@ impl m512iExt for __m512i {
481481
}
482482

483483
#[allow(non_camel_case_types)]
484-
#[unstable(feature = "stdimd_internal", issue = "none")]
484+
#[unstable(feature = "stdsimd_internal", issue = "none")]
485485
pub(crate) trait m512Ext: Sized {
486486
fn as_m512(self) -> __m512;
487487

@@ -499,7 +499,7 @@ impl m512Ext for __m512 {
499499
}
500500

501501
#[allow(non_camel_case_types)]
502-
#[unstable(feature = "stdimd_internal", issue = "none")]
502+
#[unstable(feature = "stdsimd_internal", issue = "none")]
503503
pub(crate) trait m512dExt: Sized {
504504
fn as_m512d(self) -> __m512d;
505505

0 commit comments

Comments
 (0)