Fixed outdated numbers in crc32c comment

This number was an incorrect result caued by overallocating the
small-table array (64-ints vs 64-bytes), and has unfortunately crept
into too many places...
This commit is contained in:
Christopher Haster
2024-06-04 23:35:33 -05:00
parent 54d77da2f5
commit 26f3034813
+1 -1
View File
@@ -93,7 +93,7 @@ uint32_t lfs_crc32c(uint32_t crc, const void *buffer, size_t size) {
// //
// code stack ins ld/st branch // code stack ins ld/st branch
// naive 48 12 221192 4099 36865 // naive 48 12 221192 4099 36865
// small-table 316 12 49160 12291 4097 // small-table 124 12 49160 12291 4097
// big-table 1064 8 32776 8195 4097 // big-table 1064 8 32776 8195 4097
// //
#if defined(LFS_SMALLER_CRC32C) #if defined(LFS_SMALLER_CRC32C)