]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Remove old comments about crc32 folding from crc32 benchmark.
authorNathan Moinvaziri <nathan@nathanm.com>
Wed, 31 Dec 2025 23:18:38 +0000 (15:18 -0800)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Sat, 17 Jan 2026 19:37:25 +0000 (20:37 +0100)
test/benchmarks/benchmark_crc32.cc

index 223a1eaa645864e871435ffb131125029e549328..e3c4d9e2c2d5fc0864df80e7f71ca857baac12e5 100644 (file)
@@ -89,11 +89,9 @@ BENCHMARK_CRC32(power8, crc32_power8, test_cpu_features.power.has_arch_2_07);
 BENCHMARK_CRC32(vx, crc32_s390_vx, test_cpu_features.s390.has_vx);
 #endif
 #ifdef X86_PCLMULQDQ_CRC
-/* CRC32 fold does a memory copy while hashing */
 BENCHMARK_CRC32(pclmulqdq, crc32_pclmulqdq, test_cpu_features.x86.has_pclmulqdq);
 #endif
 #ifdef X86_VPCLMULQDQ_CRC
-/* CRC32 fold does a memory copy while hashing */
 BENCHMARK_CRC32(vpclmulqdq, crc32_vpclmulqdq, (test_cpu_features.x86.has_pclmulqdq && test_cpu_features.x86.has_avx512_common && test_cpu_features.x86.has_vpclmulqdq));
 #endif
 #ifdef LOONGARCH_CRC