We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a20add commit b17efd8Copy full SHA for b17efd8
crates/core_arch/src/simd.rs
@@ -198,10 +198,26 @@ simd_ty!(i32x16[i32]:
198
| x0, x1, x2, x3, x4, x5, x6, x7,
199
x8, x9, x10, x11, x12, x13, x14, x15);
200
201
+simd_ty!(u32x16[u32]:
202
+ u32, u32, u32, u32, u32, u32, u32, u32,
203
+ u32, u32, u32, u32, u32, u32, u32, u32
204
+ | x0, x1, x2, x3, x4, x5, x6, x7,
205
+ x8, x9, x10, x11, x12, x13, x14, x15);
206
+
207
+simd_ty!(f32x16[f32]:
208
+ f32, f32, f32, f32, f32, f32, f32, f32,
209
+ f32, f32, f32, f32, f32, f32, f32, f32
210
211
212
213
simd_ty!(i64x8[i64]:
214
i64, i64, i64, i64, i64, i64, i64, i64
215
| x0, x1, x2, x3, x4, x5, x6, x7);
216
217
simd_ty!(u64x8[u64]:
218
u64, u64, u64, u64, u64, u64, u64, u64
219
220
221
+simd_ty!(f64x8[f64]:
222
+ f64, f64, f64, f64, f64, f64, f64, f64
223
+ | x0, x1, x2, x3, x4, x5, x6, x7);
0 commit comments