File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -173,6 +173,17 @@ pub mod arch {
173
173
pub use crate :: core_arch:: wasm32:: * ;
174
174
}
175
175
176
+ /// Platform-specific intrinsics for the `wasm` target family.
177
+ ///
178
+ /// See the [module documentation](../index.html) for more details.
179
+ #[ cfg( any( target_family = "wasm" , doc) ) ]
180
+ #[ doc( cfg( target_family = "wasm" ) ) ]
181
+ #[ stable( feature = "simd_wasm32" , since = "1.33.0" ) ]
182
+ pub mod wasm {
183
+ #[ stable( feature = "simd_wasm32" , since = "1.33.0" ) ]
184
+ pub use crate :: core_arch:: wasm32:: * ;
185
+ }
186
+
176
187
/// Platform-specific intrinsics for the `mips` platform.
177
188
///
178
189
/// See the [module documentation](../index.html) for more details.
@@ -240,8 +251,8 @@ mod aarch64;
240
251
#[ doc( cfg( any( target_arch = "arm" ) ) ) ]
241
252
mod arm;
242
253
243
- #[ cfg( any( target_arch = "wasm32" , target_arch = "wasm64 ", doc) ) ]
244
- #[ doc( cfg( any ( target_arch = "wasm32" , target_arch = "wasm64" ) ) ) ]
254
+ #[ cfg( any( target_family = "wasm " , doc) ) ]
255
+ #[ doc( cfg( target_family = "wasm" ) ) ]
245
256
mod wasm32;
246
257
247
258
#[ cfg( any( target_arch = "mips" , target_arch = "mips64" , doc) ) ]
You can’t perform that action at this time.
0 commit comments