Skip to content

Commit

Permalink
clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
serendipity-crypto committed Sep 6, 2024
1 parent bd9bfeb commit a510aff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions algebra/src/utils/sse2neon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ macro_rules! _mm_aeskeygenassist_si128 {
vreinterpretq_u8_u32(vld1q_u32(
[
x1,
((x1 >> 8) | (x1 << 24)) ^ $rcon,
(x1.rotate_right(8) | (x1 << 24)) ^ $rcon,
x3,
((x3 >> 8) | (x3 << 24)) ^ $rcon,
(x3.rotate_right(8) | (x3 << 24)) ^ $rcon,
]
.as_ptr(),
))
Expand Down

0 comments on commit a510aff

Please sign in to comment.