From: Nathan Moinvaziri Date: Wed, 31 Dec 2025 23:18:38 +0000 (-0800) Subject: Remove old comments about crc32 folding from crc32 benchmark. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a25c7709490e35c6540bb222a16ed582a9929f56;p=thirdparty%2Fzlib-ng.git Remove old comments about crc32 folding from crc32 benchmark. --- diff --git a/test/benchmarks/benchmark_crc32.cc b/test/benchmarks/benchmark_crc32.cc index 223a1eaa6..e3c4d9e2c 100644 --- a/test/benchmarks/benchmark_crc32.cc +++ b/test/benchmarks/benchmark_crc32.cc @@ -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