Skip to content

Use issue = "none" instead of "0" #836

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/core_arch/src/simd_llvm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ extern "platform-intrinsic" {
#[rustc_args_required_const(2)]
pub fn simd_shuffle128<T, U>(x: T, y: T, idx: [u32; 128]) -> U;

#[rustc_const_unstable(feature = "const_simd_insert", issue = "0")]
#[rustc_const_unstable(feature = "const_simd_insert", issue = "none")]
pub fn simd_insert<T, U>(x: T, idx: u32, val: U) -> T;
#[rustc_const_unstable(feature = "const_simd_extract", issue = "0")]
#[rustc_const_unstable(feature = "const_simd_extract", issue = "none")]
pub fn simd_extract<T, U>(x: T, idx: u32) -> U;
//pub fn simd_select
pub fn simd_bitmask<T, U>(x: T) -> U;
Expand Down
2 changes: 1 addition & 1 deletion crates/core_arch/src/wasm32/simd128.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ types! {
}

#[allow(non_camel_case_types)]
#[unstable(feature = "stdimd_internal", issue = "0")]
#[unstable(feature = "stdimd_internal", issue = "none")]
pub(crate) trait v128Ext: Sized {
fn as_v128(self) -> v128;

Expand Down
8 changes: 4 additions & 4 deletions crates/core_arch/src/x86/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ mod test;
pub use self::test::*;

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

Expand Down Expand Up @@ -395,7 +395,7 @@ impl m64Ext for __m64 {
}

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

Expand Down Expand Up @@ -448,7 +448,7 @@ impl m128iExt for __m128i {
}

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

Expand Down Expand Up @@ -501,7 +501,7 @@ impl m256iExt for __m256i {
}

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

Expand Down
2 changes: 1 addition & 1 deletion crates/std_detect/src/detect/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ macro_rules! features {
#[allow(non_camel_case_types)]
#[derive(Copy, Clone)]
#[repr(u8)]
#[unstable(feature = "stdsimd_internal", issue = "0")]
#[unstable(feature = "stdsimd_internal", issue = "none")]
pub(crate) enum Feature {
$(
$(#[$feature_comment])*
Expand Down