Skip to content

Commit 706527d

Browse files
folkertdevAmanieu
authored andcommitted
remove unneeded cast
1 parent 306336c commit 706527d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

crates/core_arch/src/aarch64/neon/generated.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17158,7 +17158,7 @@ pub fn vqdmlalh_s16(a: i32, b: i16, c: i16) -> i32 {
1715817158
#[stable(feature = "neon_intrinsics", since = "1.59.0")]
1715917159
pub fn vqdmlals_s32(a: i64, b: i32, c: i32) -> i64 {
1716017160
let x: i64 = vqaddd_s64(a, vqdmulls_s32(b, c));
17161-
x as i64
17161+
x
1716217162
}
1716317163
#[doc = "Signed saturating doubling multiply-subtract long"]
1716417164
#[doc = "[Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vqdmlsl_high_lane_s16)"]
@@ -17324,7 +17324,7 @@ pub fn vqdmlslh_s16(a: i32, b: i16, c: i16) -> i32 {
1732417324
#[stable(feature = "neon_intrinsics", since = "1.59.0")]
1732517325
pub fn vqdmlsls_s32(a: i64, b: i32, c: i32) -> i64 {
1732617326
let x: i64 = vqsubd_s64(a, vqdmulls_s32(b, c));
17327-
x as i64
17327+
x
1732817328
}
1732917329
#[doc = "Vector saturating doubling multiply high by scalar"]
1733017330
#[doc = "[Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vqdmulh_lane_s16)"]

crates/stdarch-gen-arm/spec/neon/aarch64.spec.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7312,7 +7312,7 @@ intrinsics:
73127312
- ["i64", "i32", "i32", "i64"]
73137313
compose:
73147314
- Let: [x, i64, {FnCall: [vqaddd_s64, [a, {FnCall: [vqdmulls_s32, [b, c]]}]]}]
7315-
- Identifier: ['x as i64', Symbol]
7315+
- Identifier: ['x', Symbol]
73167316

73177317
- name: "vqdmlal{type[4]}"
73187318
doc: "Signed saturating doubling multiply-add long"
@@ -7426,7 +7426,7 @@ intrinsics:
74267426
- ["i64", "i32", "i32", "i64"]
74277427
compose:
74287428
- Let: [x, i64, {FnCall: [vqsubd_s64, [a, {FnCall: [vqdmulls_s32, [b, c]]}]]}]
7429-
- Identifier: ['x as i64', Symbol]
7429+
- Identifier: ['x', Symbol]
74307430

74317431
- name: "vqdmlsl{type[4]}"
74327432
doc: "Signed saturating doubling multiply-subtract long"

0 commit comments

Comments
 (0)