Skip to content

Commit

Permalink
Make the wasm and wasm64 modules unstable
Browse files Browse the repository at this point in the history
Tracking issue: rust-lang/rust#90599
  • Loading branch information
Amanieu committed Nov 5, 2021
1 parent 0671779 commit 4136e11
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/core_arch/src/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,9 @@ pub mod arch {
/// See the [module documentation](../index.html) for more details.
#[cfg(any(target_arch = "wasm64", doc))]
#[doc(cfg(target_arch = "wasm64"))]
#[stable(feature = "simd_wasm32", since = "1.33.0")]
#[unstable(feature = "simd_wasm64", issue = "90599")]
pub mod wasm64 {
#[stable(feature = "simd_wasm32", since = "1.33.0")]
#[unstable(feature = "simd_wasm64", issue = "90599")]
pub use crate::core_arch::wasm32::*;
}

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

Expand Down

0 comments on commit 4136e11

Please sign in to comment.