diff --git a/crc32_arm_simd.c b/crc32_arm_simd.c index 87a6a19..d63d8de 100644 --- a/crc32_arm_simd.c +++ b/crc32_arm_simd.c @@ -92,7 +92,7 @@ TARGET_ARMV8_WITH_CRC uint32_t armv8_crc32_little(uint32_t previous_crc, const u } while(len >= 4) { - c = __crc32d(c, *buf4++); + c = __crc32w(c, *buf4++); len -= 4; }