Skip to content

Commit e302c34

Browse files
mrkajetanpAmanieu
authored andcommitted
stdarch-verify: Support f16 vector types
1 parent f95c7db commit e302c34

File tree

1 file changed

+9
-0
lines changed
  • crates/stdarch-verify/src

1 file changed

+9
-0
lines changed

Diff for: crates/stdarch-verify/src/lib.rs

+9
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,15 @@ fn to_type(t: &syn::Type) -> proc_macro2::TokenStream {
290290
"uint64x2x2_t" => quote! { &U64X2X2 },
291291
"uint64x2x3_t" => quote! { &U64X2X3 },
292292
"uint64x2x4_t" => quote! { &U64X2X4 },
293+
"float16x2_t" => quote! { &F16X2 },
294+
"float16x4_t" => quote! { &F16X4 },
295+
"float16x4x2_t" => quote! { &F16X4X2 },
296+
"float16x4x3_t" => quote! { &F16X4X3 },
297+
"float16x4x4_t" => quote! { &F16X4X4 },
298+
"float16x8_t" => quote! { &F16X8 },
299+
"float16x8x2_t" => quote! { &F16X8X2 },
300+
"float16x8x3_t" => quote! { &F16X8X3 },
301+
"float16x8x4_t" => quote! { &F16X8X4 },
293302
"float32x2_t" => quote! { &F32X2 },
294303
"float32x2x2_t" => quote! { &F32X2X2 },
295304
"float32x2x3_t" => quote! { &F32X2X3 },

0 commit comments

Comments
 (0)