Skip to content

Commit 8cba9ab

Browse files
JohnTitorgnzlbg
authored andcommitted
Use issue = "none" instead of "0"
1 parent 249b3ec commit 8cba9ab

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

crates/core_arch/src/simd_llvm.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ extern "platform-intrinsic" {
2626
#[rustc_args_required_const(2)]
2727
pub fn simd_shuffle128<T, U>(x: T, y: T, idx: [u32; 128]) -> U;
2828

29-
#[rustc_const_unstable(feature = "const_simd_insert", issue = "0")]
29+
#[rustc_const_unstable(feature = "const_simd_insert", issue = "none")]
3030
pub fn simd_insert<T, U>(x: T, idx: u32, val: U) -> T;
31-
#[rustc_const_unstable(feature = "const_simd_extract", issue = "0")]
31+
#[rustc_const_unstable(feature = "const_simd_extract", issue = "none")]
3232
pub fn simd_extract<T, U>(x: T, idx: u32) -> U;
3333
//pub fn simd_select
3434
pub fn simd_bitmask<T, U>(x: T) -> U;

crates/core_arch/src/wasm32/simd128.rs

+1-1
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 = "0")]
27+
#[unstable(feature = "stdimd_internal", issue = "none")]
2828
pub(crate) trait v128Ext: Sized {
2929
fn as_v128(self) -> v128;
3030

crates/core_arch/src/x86/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ mod test;
352352
pub use self::test::*;
353353

354354
#[allow(non_camel_case_types)]
355-
#[unstable(feature = "stdimd_internal", issue = "0")]
355+
#[unstable(feature = "stdimd_internal", issue = "none")]
356356
pub(crate) trait m64Ext: Sized {
357357
fn as_m64(self) -> __m64;
358358

@@ -395,7 +395,7 @@ impl m64Ext for __m64 {
395395
}
396396

397397
#[allow(non_camel_case_types)]
398-
#[unstable(feature = "stdimd_internal", issue = "0")]
398+
#[unstable(feature = "stdimd_internal", issue = "none")]
399399
pub(crate) trait m128iExt: Sized {
400400
fn as_m128i(self) -> __m128i;
401401

@@ -448,7 +448,7 @@ impl m128iExt for __m128i {
448448
}
449449

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

@@ -501,7 +501,7 @@ impl m256iExt for __m256i {
501501
}
502502

503503
#[allow(non_camel_case_types)]
504-
#[unstable(feature = "stdimd_internal", issue = "0")]
504+
#[unstable(feature = "stdimd_internal", issue = "none")]
505505
pub(crate) trait m512iExt: Sized {
506506
fn as_m512i(self) -> __m512i;
507507

crates/std_detect/src/detect/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ macro_rules! features {
5151
#[allow(non_camel_case_types)]
5252
#[derive(Copy, Clone)]
5353
#[repr(u8)]
54-
#[unstable(feature = "stdsimd_internal", issue = "0")]
54+
#[unstable(feature = "stdsimd_internal", issue = "none")]
5555
pub(crate) enum Feature {
5656
$(
5757
$(#[$feature_comment])*

0 commit comments

Comments
 (0)