diff options
author | Nathan Moinvaziri <nathan@nathanm.com> | 2020-02-09 19:59:01 -0800 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2020-05-01 00:21:18 +0200 |
commit | e09d131b5abbccf97532afb17c3da92cd0fc6f00 (patch) | |
tree | b9dd1cb744c931c743080ef9f2b20dfc02f489d1 /fallback_builtins.h | |
parent | 343596fc98a0d7a6283dbe5d25abefca18439184 (diff) |
Standardize fill_window implementations and abstract out slide_hash_neon for ARM.
Diffstat (limited to 'fallback_builtins.h')
-rw-r--r-- | fallback_builtins.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fallback_builtins.h b/fallback_builtins.h index 3598b7c..8bd16ed 100644 --- a/fallback_builtins.h +++ b/fallback_builtins.h @@ -12,6 +12,7 @@ */ static __forceinline unsigned long __builtin_ctzl(unsigned long value) { #ifdef X86_CPUID + x86_check_features(); if (x86_cpu_has_tzcnt) return _tzcnt_u32(value); #endif |