aboutsummaryrefslogtreecommitdiff
path: root/src/rust_sse41.rs
diff options
context:
space:
mode:
authorJoel Rosdahl <[email protected]>2023-05-23 21:47:15 +0200
committerJack O'Connor <[email protected]>2023-05-23 14:39:27 -0700
commit2dd4e57f68d85f3983b1880b66250fc7bdf0b7c8 (patch)
tree3bfbedaa7e893cca918aec1c5eb2f5994c3420f7 /src/rust_sse41.rs
parent71a2646180c787e22f8681c5fec7655a0ad51e99 (diff)
Fix typos
Diffstat (limited to 'src/rust_sse41.rs')
-rw-r--r--src/rust_sse41.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rust_sse41.rs b/src/rust_sse41.rs
index 4b27f41..1ebadc4 100644
--- a/src/rust_sse41.rs
+++ b/src/rust_sse41.rs
@@ -472,7 +472,7 @@ unsafe fn round(v: &mut [__m128i; 16], m: &[__m128i; 16], r: usize) {
#[inline(always)]
unsafe fn transpose_vecs(vecs: &mut [__m128i; DEGREE]) {
- // Interleave 32-bit lates. The low unpack is lanes 00/11 and the high is
+ // Interleave 32-bit lanes. The low unpack is lanes 00/11 and the high is
// 22/33. Note that this doesn't split the vector into two lanes, as the
// AVX2 counterparts do.
let ab_01 = _mm_unpacklo_epi32(vecs[0], vecs[1]);