Skip to content

Commit 262dd22

Browse files
committed
Update SIMD tracking issue
1 parent e572992 commit 262dd22

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

crates/core_arch/src/wasm32/simd128.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
//! [WebAssembly `SIMD128` ISA]:
44
//! https://github.com/WebAssembly/simd/blob/master/proposals/simd/SIMD.md
55
6+
#![unstable(feature = "wasm_simd", issue = "74372")]
67
#![allow(non_camel_case_types)]
78
#![allow(unused_imports)]
89

@@ -362,7 +363,7 @@ pub const unsafe fn v128_const(
362363
///
363364
/// All indexes `$i*` must have the type `u32`.
364365
#[allow_internal_unstable(platform_intrinsics, rustc_attrs)]
365-
#[unstable(feature = "stdsimd", issue = "27731")]
366+
#[unstable(feature = "wasm_simd", issue = "74372")]
366367
pub macro v8x16_shuffle(
367368
$a:expr, $b:expr,
368369
$i0:expr,
@@ -2193,7 +2194,7 @@ pub unsafe fn i32x4_trunc_sat_f32x4_s(a: v128) -> v128 {
21932194
#[inline]
21942195
#[cfg_attr(test, assert_instr("i32x4.trunc_sat_f32x4_u"))]
21952196
#[target_feature(enable = "simd128")]
2196-
pub unsafe fn i32x4_trunc_sat_f32x4_su(a: v128) -> v128 {
2197+
pub unsafe fn i32x4_trunc_sat_f32x4_u(a: v128) -> v128 {
21972198
transmute(simd_cast::<_, u32x4>(a.as_f32x4()))
21982199
}
21992200

0 commit comments

Comments
 (0)