Skip to content

Commit d93f37b

Browse files
SimonSapingnzlbg
authored andcommitted
Make SIMD tracking issue marked for stdsimd too
rust-lang/rust#27731
1 parent 137d07d commit d93f37b

File tree

11 files changed

+38
-38
lines changed

11 files changed

+38
-38
lines changed

coresimd/mod.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ mod ppsv;
1111
/// This is an **unstable** module for portable SIMD operations. This module
1212
/// has not yet gone through an RFC and is likely to change, but feedback is
1313
/// always welcome!
14-
#[unstable(feature = "stdsimd", issue = "0")]
14+
#[unstable(feature = "stdsimd", issue = "27731")]
1515
pub mod simd {
1616
pub use coresimd::ppsv::*;
1717
}
@@ -76,7 +76,7 @@ pub mod arch {
7676
/// See the [module documentation](../index.html) for more details.
7777
#[cfg(any(target_arch = "arm", dox))]
7878
#[doc(cfg(target_arch = "arm"))]
79-
#[unstable(feature = "stdsimd", issue = "0")]
79+
#[unstable(feature = "stdsimd", issue = "27731")]
8080
pub mod arm {
8181
pub use coresimd::arm::*;
8282
}
@@ -86,7 +86,7 @@ pub mod arch {
8686
/// See the [module documentation](../index.html) for more details.
8787
#[cfg(any(target_arch = "aarch64", dox))]
8888
#[doc(cfg(target_arch = "aarch64"))]
89-
#[unstable(feature = "stdsimd", issue = "0")]
89+
#[unstable(feature = "stdsimd", issue = "27731")]
9090
pub mod aarch64 {
9191
pub use coresimd::aarch64::*;
9292
pub use coresimd::arm::*;
@@ -96,7 +96,7 @@ pub mod arch {
9696
///
9797
/// See the [module documentation](../index.html) for more details.
9898
#[cfg(target_arch = "wasm32")]
99-
#[unstable(feature = "stdsimd", issue = "0")]
99+
#[unstable(feature = "stdsimd", issue = "27731")]
100100
pub mod wasm32 {
101101
pub use coresimd::wasm32::*;
102102
}
@@ -106,7 +106,7 @@ pub mod arch {
106106
/// See the [module documentation](../index.html) for more details.
107107
#[cfg(any(target_arch = "mips", dox))]
108108
#[doc(cfg(target_arch = "mips"))]
109-
#[unstable(feature = "stdsimd", issue = "0")]
109+
#[unstable(feature = "stdsimd", issue = "27731")]
110110
pub mod mips {
111111
pub use coresimd::mips::*;
112112
}
@@ -116,7 +116,7 @@ pub mod arch {
116116
/// See the [module documentation](../index.html) for more details.
117117
#[cfg(any(target_arch = "mips64", dox))]
118118
#[doc(cfg(target_arch = "mips64"))]
119-
#[unstable(feature = "stdsimd", issue = "0")]
119+
#[unstable(feature = "stdsimd", issue = "27731")]
120120
pub mod mips64 {
121121
pub use coresimd::mips::*;
122122
}
@@ -126,7 +126,7 @@ pub mod arch {
126126
/// See the [module documentation](../index.html) for more details.
127127
#[cfg(any(target_arch = "powerpc", dox))]
128128
#[doc(cfg(target_arch = "powerpc"))]
129-
#[unstable(feature = "stdsimd", issue = "0")]
129+
#[unstable(feature = "stdsimd", issue = "27731")]
130130
pub mod powerpc {
131131
pub use coresimd::powerpc::*;
132132
}
@@ -137,7 +137,7 @@ pub mod arch {
137137
#[cfg(target_arch = "powerpc64")]
138138
#[cfg(any(target_arch = "powerpc64", dox))]
139139
#[doc(cfg(target_arch = "powerpc64"))]
140-
#[unstable(feature = "stdsimd", issue = "0")]
140+
#[unstable(feature = "stdsimd", issue = "27731")]
141141
pub mod powerpc64 {
142142
pub use coresimd::powerpc64::*;
143143
}

crates/coresimd/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
many_single_char_names))]
2929
#![cfg_attr(test, allow(unused_imports))]
3030
#![no_core]
31-
#![unstable(feature = "stdsimd", issue = "0")]
31+
#![unstable(feature = "stdsimd", issue = "27731")]
3232
#![doc(test(attr(deny(warnings))),
3333
test(attr(allow(dead_code, deprecated, unused_variables,
3434
unused_mut))))]

crates/stdsimd/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#![cfg_attr(feature = "cargo-clippy", allow(shadow_reuse))]
1313
#![cfg_attr(target_os = "linux", feature(linkage))]
1414
#![no_std]
15-
#![unstable(feature = "stdsimd", issue = "0")]
15+
#![unstable(feature = "stdsimd", issue = "27731")]
1616

1717
#[macro_use]
1818
extern crate cfg_if;

stdsimd/arch/detect/arch/aarch64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Aarch64 run-time features.
22
33
#[macro_export]
4-
#[unstable(feature = "stdsimd", issue = "0")]
4+
#[unstable(feature = "stdsimd", issue = "27731")]
55
#[allow_internal_unstable]
66
macro_rules! is_aarch64_feature_detected {
77
("neon") => {

stdsimd/arch/detect/arch/arm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Run-time feature detection on ARM Aarch32.
22
33
#[macro_export]
4-
#[unstable(feature = "stdsimd", issue = "0")]
4+
#[unstable(feature = "stdsimd", issue = "27731")]
55
#[allow_internal_unstable]
66
macro_rules! is_arm_feature_detected {
77
("neon") => {

stdsimd/arch/detect/arch/mips.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Run-time feature detection on MIPS.
22
33
#[macro_export]
4-
#[unstable(feature = "stdsimd", issue = "0")]
4+
#[unstable(feature = "stdsimd", issue = "27731")]
55
#[allow_internal_unstable]
66
macro_rules! is_mips_feature_detected {
77
("msa") => {

stdsimd/arch/detect/arch/mips64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Run-time feature detection on MIPS64.
22
33
#[macro_export]
4-
#[unstable(feature = "stdsimd", issue = "0")]
4+
#[unstable(feature = "stdsimd", issue = "27731")]
55
#[allow_internal_unstable]
66
macro_rules! is_mips64_feature_detected {
77
("msa") => {

stdsimd/arch/detect/arch/powerpc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Run-time feature detection on PowerPC.
22
33
#[macro_export]
4-
#[unstable(feature = "stdsimd", issue = "0")]
4+
#[unstable(feature = "stdsimd", issue = "27731")]
55
#[allow_internal_unstable]
66
macro_rules! is_powerpc_feature_detected {
77
("altivec") => {

stdsimd/arch/detect/arch/powerpc64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Run-time feature detection on PowerPC64.
22
33
#[macro_export]
4-
#[unstable(feature = "stdsimd", issue = "0")]
4+
#[unstable(feature = "stdsimd", issue = "27731")]
55
#[allow_internal_unstable]
66
macro_rules! is_powerpc64_feature_detected {
77
("altivec") => {

stdsimd/arch/detect/error_macros.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
#[cfg(not(any(target_arch = "x86", target_arch = "x86_64")))]
66
#[macro_export]
7-
#[unstable(feature = "stdsimd", issue = "0")]
7+
#[unstable(feature = "stdsimd", issue = "27731")]
88
macro_rules! is_x86_feature_detected {
99
($t: tt) => {
1010
compile_error!(
@@ -23,7 +23,7 @@ macro_rules! is_x86_feature_detected {
2323

2424
#[cfg(not(target_arch = "arm"))]
2525
#[macro_export]
26-
#[unstable(feature = "stdsimd", issue = "0")]
26+
#[unstable(feature = "stdsimd", issue = "27731")]
2727
macro_rules! is_arm_feature_detected {
2828
($t: tt) => {
2929
compile_error!(
@@ -42,7 +42,7 @@ macro_rules! is_arm_feature_detected {
4242

4343
#[cfg(not(target_arch = "aarch64"))]
4444
#[macro_export]
45-
#[unstable(feature = "stdsimd", issue = "0")]
45+
#[unstable(feature = "stdsimd", issue = "27731")]
4646
macro_rules! is_aarch64_feature_detected {
4747
($t: tt) => {
4848
compile_error!(
@@ -61,7 +61,7 @@ macro_rules! is_aarch64_feature_detected {
6161

6262
#[cfg(not(target_arch = "powerpc"))]
6363
#[macro_export]
64-
#[unstable(feature = "stdsimd", issue = "0")]
64+
#[unstable(feature = "stdsimd", issue = "27731")]
6565
macro_rules! is_powerpc_feature_detected {
6666
($t:tt) => {
6767
compile_error!(r#"
@@ -78,7 +78,7 @@ guarding it behind a cfg(target_arch) as follows:
7878

7979
#[cfg(not(target_arch = "powerpc64"))]
8080
#[macro_export]
81-
#[unstable(feature = "stdsimd", issue = "0")]
81+
#[unstable(feature = "stdsimd", issue = "27731")]
8282
macro_rules! is_powerpc64_feature_detected {
8383
($t:tt) => {
8484
compile_error!(r#"
@@ -95,7 +95,7 @@ guarding it behind a cfg(target_arch) as follows:
9595

9696
#[cfg(not(target_arch = "mips"))]
9797
#[macro_export]
98-
#[unstable(feature = "stdsimd", issue = "0")]
98+
#[unstable(feature = "stdsimd", issue = "27731")]
9999
macro_rules! is_mips_feature_detected {
100100
($t: tt) => {
101101
compile_error!(
@@ -114,7 +114,7 @@ macro_rules! is_mips_feature_detected {
114114

115115
#[cfg(not(target_arch = "mips64"))]
116116
#[macro_export]
117-
#[unstable(feature = "stdsimd", issue = "0")]
117+
#[unstable(feature = "stdsimd", issue = "27731")]
118118
macro_rules! is_mips64_feature_detected {
119119
($t: tt) => {
120120
compile_error!(

0 commit comments

Comments
 (0)