@@ -64,7 +64,7 @@ pub mod arch {
64
64
/// proposals such as [atomics] and [simd].
65
65
///
66
66
/// Intrinsics in the `wasm32` module are modeled after the WebAssembly
67
- /// instructions that they represent. All functions are named after the
67
+ /// instructions that they represent. Most functions are named after the
68
68
/// instruction they intend to correspond to, and the arguments/results
69
69
/// correspond to the type signature of the instruction itself. Stable
70
70
/// WebAssembly instructions are [documented online][instrdoc].
@@ -104,19 +104,11 @@ pub mod arch {
104
104
///
105
105
/// ## SIMD
106
106
///
107
- /// The [simd proposal][simd] for WebAssembly adds a new `v128` type for a
108
- /// 128-bit SIMD register. It also adds a large array of instructions to
109
- /// operate on the `v128` type to perform data processing. The SIMD proposal
110
- /// at the time of this writing is in [phase 4] which means that it's in the
111
- /// standardization phase. It's expected that once some testing on nightly
112
- /// has happened a stabilization proposal will be made for the Rust
113
- /// intrinsics. If you notice anything awry please feel free to [open an
114
- /// issue](https://github.com/rust-lang/stdarch/issues/new).
115
- ///
116
- /// [phase 4]: https://github.com/webassembly/proposals
117
- ///
118
- /// Using SIMD is intended to be similar to as you would on `x86_64`, for
119
- /// example. You'd write a function such as:
107
+ /// The [simd proposal][simd] for WebAssembly added a new `v128` type for a
108
+ /// 128-bit SIMD register. It also added a large array of instructions to
109
+ /// operate on the `v128` type to perform data processing. Using SIMD on
110
+ /// wasm is intended to be similar to as you would on `x86_64`, for example.
111
+ /// You'd write a function such as:
120
112
///
121
113
/// ```rust,ignore
122
114
/// #[cfg(target_arch = "wasm32")]
0 commit comments