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

+8-8
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+7-7
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!(

stdsimd/mod.rs

+15-15
Original file line numberDiff line numberDiff line change
@@ -353,35 +353,35 @@ pub mod arch {
353353
pub use coresimd::arch::x86_64;
354354

355355
#[cfg(all(not(dox), target_arch = "arm"))]
356-
#[unstable(feature = "stdsimd", issue = "0")]
356+
#[unstable(feature = "stdsimd", issue = "27731")]
357357
pub use coresimd::arch::arm;
358358

359359
#[cfg(all(not(dox), target_arch = "aarch64"))]
360-
#[unstable(feature = "stdsimd", issue = "0")]
360+
#[unstable(feature = "stdsimd", issue = "27731")]
361361
pub use coresimd::arch::aarch64;
362362

363363
#[cfg(target_arch = "wasm32")]
364-
#[unstable(feature = "stdsimd", issue = "0")]
364+
#[unstable(feature = "stdsimd", issue = "27731")]
365365
pub use coresimd::arch::wasm32;
366366

367367
#[cfg(all(not(dox), target_arch = "mips"))]
368-
#[unstable(feature = "stdsimd", issue = "0")]
368+
#[unstable(feature = "stdsimd", issue = "27731")]
369369
pub use coresimd::arch::mips;
370370

371371
#[cfg(all(not(dox), target_arch = "mips64"))]
372-
#[unstable(feature = "stdsimd", issue = "0")]
372+
#[unstable(feature = "stdsimd", issue = "27731")]
373373
pub use coresimd::arch::mips64;
374374

375375
#[cfg(all(not(dox), target_arch = "powerpc"))]
376-
#[unstable(feature = "stdsimd", issue = "0")]
376+
#[unstable(feature = "stdsimd", issue = "27731")]
377377
pub use coresimd::arch::powerpc;
378378

379379
#[cfg(all(not(dox), target_arch = "powerpc64"))]
380-
#[unstable(feature = "stdsimd", issue = "0")]
380+
#[unstable(feature = "stdsimd", issue = "27731")]
381381
pub use coresimd::arch::powerpc64;
382382

383383
#[doc(hidden)] // unstable implementation detail
384-
#[unstable(feature = "stdsimd", issue = "0")]
384+
#[unstable(feature = "stdsimd", issue = "27731")]
385385
pub mod detect;
386386

387387
/// Platform-specific intrinsics for the `x86` platform.
@@ -417,7 +417,7 @@ pub mod arch {
417417
/// [libcore]: ../../../core/arch/arm/index.html
418418
#[cfg(dox)]
419419
#[doc(cfg(target_arch = "arm"))]
420-
#[unstable(feature = "stdsimd", issue = "0")]
420+
#[unstable(feature = "stdsimd", issue = "27731")]
421421
pub mod arm {}
422422

423423
/// Platform-specific intrinsics for the `aarch64` platform.
@@ -429,7 +429,7 @@ pub mod arch {
429429
/// [libcore]: ../../../core/arch/aarch64/index.html
430430
#[cfg(dox)]
431431
#[doc(cfg(target_arch = "aarch64"))]
432-
#[unstable(feature = "stdsimd", issue = "0")]
432+
#[unstable(feature = "stdsimd", issue = "27731")]
433433
pub mod aarch64 {}
434434

435435
/// Platform-specific intrinsics for the `mips` platform.
@@ -441,7 +441,7 @@ pub mod arch {
441441
/// [libcore]: ../../../core/arch/mips/index.html
442442
#[cfg(dox)]
443443
#[doc(cfg(target_arch = "mips"))]
444-
#[unstable(feature = "stdsimd", issue = "0")]
444+
#[unstable(feature = "stdsimd", issue = "27731")]
445445
pub mod mips {}
446446

447447
/// Platform-specific intrinsics for the `mips64` platform.
@@ -453,7 +453,7 @@ pub mod arch {
453453
/// [libcore]: ../../../core/arch/mips64/index.html
454454
#[cfg(dox)]
455455
#[doc(cfg(target_arch = "mips64"))]
456-
#[unstable(feature = "stdsimd", issue = "0")]
456+
#[unstable(feature = "stdsimd", issue = "27731")]
457457
pub mod mips64 {}
458458

459459
/// Platform-specific intrinsics for the `powerpc` platform.
@@ -465,7 +465,7 @@ pub mod arch {
465465
/// [libcore]: ../../../core/arch/powerpc/index.html
466466
#[cfg(dox)]
467467
#[doc(cfg(target_arch = "powerpc"))]
468-
#[unstable(feature = "stdsimd", issue = "0")]
468+
#[unstable(feature = "stdsimd", issue = "27731")]
469469
pub mod powerpc {}
470470

471471
/// Platform-specific intrinsics for the `powerpc64` platform.
@@ -477,9 +477,9 @@ pub mod arch {
477477
/// [libcore]: ../../../core/arch/powerpc64/index.html
478478
#[cfg(dox)]
479479
#[doc(cfg(target_arch = "powerpc64"))]
480-
#[unstable(feature = "stdsimd", issue = "0")]
480+
#[unstable(feature = "stdsimd", issue = "27731")]
481481
pub mod powerpc64 {}
482482
}
483483

484-
#[unstable(feature = "stdsimd", issue = "0")]
484+
#[unstable(feature = "stdsimd", issue = "27731")]
485485
pub use coresimd::simd;

0 commit comments

Comments
 (0)