Skip to content

Commit 8a5358c

Browse files
authored
Make the wasm and wasm64 modules unstable (#1247)
1 parent 0671779 commit 8a5358c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/core_arch/src/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,9 @@ pub mod arch {
167167
/// See the [module documentation](../index.html) for more details.
168168
#[cfg(any(target_arch = "wasm64", doc))]
169169
#[doc(cfg(target_arch = "wasm64"))]
170-
#[stable(feature = "simd_wasm32", since = "1.33.0")]
170+
#[unstable(feature = "simd_wasm64", issue = "90599")]
171171
pub mod wasm64 {
172-
#[stable(feature = "simd_wasm32", since = "1.33.0")]
172+
#[unstable(feature = "simd_wasm64", issue = "90599")]
173173
pub use crate::core_arch::wasm32::*;
174174
}
175175

@@ -178,9 +178,9 @@ pub mod arch {
178178
/// See the [module documentation](../index.html) for more details.
179179
#[cfg(any(target_family = "wasm", doc))]
180180
#[doc(cfg(target_family = "wasm"))]
181-
#[stable(feature = "simd_wasm32", since = "1.33.0")]
181+
#[unstable(feature = "simd_wasm64", issue = "90599")]
182182
pub mod wasm {
183-
#[stable(feature = "simd_wasm32", since = "1.33.0")]
183+
#[unstable(feature = "simd_wasm64", issue = "90599")]
184184
pub use crate::core_arch::wasm32::*;
185185
}
186186

0 commit comments

Comments
 (0)