Skip to content

Commit

Permalink
Alter
Browse files Browse the repository at this point in the history
  • Loading branch information
Cuda-Chen committed Jan 30, 2024
1 parent 6ed7fd9 commit cbaaa4b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sse2neon.h
Original file line number Diff line number Diff line change
Expand Up @@ -8500,8 +8500,7 @@ FORCE_INLINE uint32_t _mm_crc32_u8(uint32_t crc, uint8_t v)
crc = __crc32cb(crc, v);
#else
crc ^= v;
#if (defined(__ARM_FEATURE_CRYPTO) || \
(defined(__aarch64__) || __has_builtin(__builtin_arm_crypto_vmullp64)))
#if defined(__ARM_FEATURE_CRYPTO)
// Adapted from: https://mary.rs/lab/crc32/
// Barrent reduction
uint64x2_t orig =
Expand Down

0 comments on commit cbaaa4b

Please sign in to comment.