Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
CeleritasCelery committed Jun 10, 2024
1 parent dfa8ae8 commit a9cdd6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/byte_chunk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ impl ByteChunk for x86_64::__m128i {
fn shift_across(&self, n: Self) -> Self {
unsafe {
let bottom_byte = x86_64::_mm_srli_si128(*self, 15);
let rest_shfited = x86_64::_mm_slli_si128(n, 1);
x86_64::_mm_or_si128(bottom_byte, rest_shfited)
let rest_shifted = x86_64::_mm_slli_si128(n, 1);
x86_64::_mm_or_si128(bottom_byte, rest_shifted)
}
}

Expand Down

0 comments on commit a9cdd6e

Please sign in to comment.