Skip to content

Commit

Permalink
Fix the accidental typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanHenson committed Feb 13, 2024
1 parent 2f0e322 commit 488877f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions source/arm/crc64_arm.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,7 @@ uint64_t aws_checksums_crc64xz_arm_pmull(const uint8_t *input, int length, const
}

// Fold 32 bytes down to 16 bytes by multiplying by x^192 and x^128 constants
a1 = xor3_p64(b1,
(x128, a1), pmull_hi(x128, a1));
a1 = xor3_p64(b1, pmull_lo(x128, a1), pmull_hi(x128, a1));
}

if (length & 16) {
Expand Down

0 comments on commit 488877f

Please sign in to comment.