From: Hans Kristian Rosbach Date: Mon, 6 Feb 2023 19:05:33 +0000 (+0100) Subject: Add missing compare256_neon activation to functable X-Git-Tag: 2.1.0-beta1~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f714ef422ae93a0bf2fda7d63b4757f7425b24e;p=thirdparty%2Fzlib-ng.git Add missing compare256_neon activation to functable --- diff --git a/functable.c b/functable.c index 3eef010b8..b64b4bd65 100644 --- a/functable.c +++ b/functable.c @@ -150,6 +150,7 @@ static void init_functable(void) { // ARM - NEON #if defined(ARM_NEON) && defined(HAVE_BUILTIN_CTZLL) if (arm_cpu_has_neon) { + ft.compare256 = &compare256_neon; ft.longest_match = &longest_match_neon; ft.longest_match_slow = &longest_match_slow_neon; }