diff options
| author | Nathan Moinvaziri <nathan@nathanm.com> | 2026-02-03 00:25:11 -0800 |
|---|---|---|
| committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2026-02-18 19:46:01 +0100 |
| commit | 5fe4b068ccd8f50fcf8469e2112144b6fb592bf8 (patch) | |
| tree | e8e35dbfdd248973ceebf3800482ea47442e2236 | |
| parent | 008949e3a3c29fa478869be51b5188c460ad1d52 (diff) | |
| download | Project-Tick-5fe4b068ccd8f50fcf8469e2112144b6fb592bf8.tar.gz Project-Tick-5fe4b068ccd8f50fcf8469e2112144b6fb592bf8.zip | |
Add missing native_crc32_copy define for SSE2 chorba
| -rw-r--r-- | arch/x86/x86_functions.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/x86_functions.h b/arch/x86/x86_functions.h index 9162d7eab5..d308edd2fa 100644 --- a/arch/x86/x86_functions.h +++ b/arch/x86/x86_functions.h @@ -94,6 +94,8 @@ uint32_t crc32_copy_vpclmulqdq(uint32_t crc, uint8_t *dst, const uint8_t *src, s # if !defined(WITHOUT_CHORBA_SSE) # undef native_crc32 # define native_crc32 crc32_chorba_sse2 +# undef native_crc32_copy +# define native_crc32_copy crc32_copy_chorba_sse2 # endif # undef native_slide_hash # define native_slide_hash slide_hash_sse2 |
