]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Add missing compare256_neon activation to functable
authorHans Kristian Rosbach <hk-git@circlestorm.org>
Mon, 6 Feb 2023 19:05:33 +0000 (20:05 +0100)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Sun, 12 Feb 2023 23:25:57 +0000 (00:25 +0100)
functable.c

index 3eef010b86ebd60164f77d3b56fe80df8cbd679f..b64b4bd65ab955fcae5d3ce0b0a7813e2f8cfbe9 100644 (file)
@@ -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;
     }