Skip to content

Commit

Permalink
Remove a redundant into()
Browse files Browse the repository at this point in the history
Found by clippy
  • Loading branch information
lu-zero committed Nov 20, 2023
1 parent 8212fff commit bc516fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/asm/aarch64/transform/forward.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ impl TxOperations for I32X8 {
I32X8::new(
vhsubq_s32(
self.vec().0,
vreinterpretq_s32_u32(vcltzq_s32(self.vec().0).into()),
vreinterpretq_s32_u32(vcltzq_s32(self.vec().0)),
),
vhsubq_s32(
self.vec().1,
vreinterpretq_s32_u32(vcltzq_s32(self.vec().1).into()),
vreinterpretq_s32_u32(vcltzq_s32(self.vec().1)),
),
)
}
Expand Down

0 comments on commit bc516fc

Please sign in to comment.