From 21aaee95f76fc832af93ffcc0dd1d6d1e642ef6b Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Thu, 12 Oct 2023 12:12:46 +0200 Subject: a --- compat/int-hash.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compat') diff --git a/compat/int-hash.cpp b/compat/int-hash.cpp index f9ae19c1..5847e284 100644 --- a/compat/int-hash.cpp +++ b/compat/int-hash.cpp @@ -39,7 +39,7 @@ uint64_t fnvhash_32(const void* buf, size_t size) { const auto *str = (const char*)buf, *const end = str + size; uint32_t hash = 0x811c9dc5u; -fm_UNROLL_8 +fm_UNROLL_4 for (; str != end; ++str) { hash *= 0x01000193u; @@ -52,7 +52,7 @@ uint64_t fnvhash_64(const void* buf, size_t size) { const auto *str = (const char*)buf, *const end = str + size; uint64_t hash = 0xcbf29ce484222325u; -fm_UNROLL_4 +fm_UNROLL_8 for (; str != end; ++str) { hash *= 0x100000001b3u; -- cgit v1.2.3