Skip to content

Commit 9f02cfe

Browse files
committed
Fix unsigned prefix i -> s
1 parent a78ca34 commit 9f02cfe

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

crates/stdarch-gen/src/main.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -473,14 +473,14 @@ fn expand_intrinsic(intr: &str, t: &str) -> String {
473473
intr.to_string()
474474
} else {
475475
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",
476+
"int8x8_t" => "s8",
477+
"int8x16_t" => "s8",
478+
"int16x4_t" => "s16",
479+
"int16x8_t" => "s16",
480+
"int32x2_t" => "s32",
481+
"int32x4_t" => "s32",
482+
"int64x1_t" => "s64",
483+
"int64x2_t" => "s64",
484484
"uint8x8_t" => "i8",
485485
"uint8x16_t" => "i8",
486486
"uint16x4_t" => "i16",

0 commit comments

Comments
 (0)