Fixed typo in ARM32 CRC32 instruction call.

This commit is contained in:
2023-09-23 00:50:37 +01:00
parent 27cabe4c48
commit c392dfa682

View File

@@ -92,7 +92,7 @@ TARGET_ARMV8_WITH_CRC uint32_t armv8_crc32_little(uint32_t previous_crc, const u
} }
while(len >= 4) while(len >= 4)
{ {
c = __crc32d(c, *buf4++); c = __crc32w(c, *buf4++);
len -= 4; len -= 4;
} }