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 a78ca34 commit 9f02cfeCopy full SHA for 9f02cfe
crates/stdarch-gen/src/main.rs
@@ -473,14 +473,14 @@ fn expand_intrinsic(intr: &str, t: &str) -> String {
473
intr.to_string()
474
} else {
475
let ext = match t {
476
- "int8x8_t" => "i8",
477
- "int8x16_t" => "i8",
478
- "int16x4_t" => "i16",
479
- "int16x8_t" => "i16",
480
- "int32x2_t" => "i32",
481
- "int32x4_t" => "i32",
482
- "int64x1_t" => "i64",
483
- "int64x2_t" => "i64",
+ "int8x8_t" => "s8",
+ "int8x16_t" => "s8",
+ "int16x4_t" => "s16",
+ "int16x8_t" => "s16",
+ "int32x2_t" => "s32",
+ "int32x4_t" => "s32",
+ "int64x1_t" => "s64",
+ "int64x2_t" => "s64",
484
"uint8x8_t" => "i8",
485
"uint8x16_t" => "i8",
486
"uint16x4_t" => "i16",
0 commit comments