diff options
author | Mika Lindqvist <postmaster@raasu.org> | 2021-06-22 01:41:16 +0300 |
---|---|---|
committer | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2021-06-22 13:23:10 +0200 |
commit | 3a66bc74be2fbefaaebfaaec9de016c1bbc3ed01 (patch) | |
tree | 0654d76719fb3b2304f76bd60fff48af6d45ff0e | |
parent | 74b416501d39d3813ffc0bc831b48431058feffb (diff) |
[functable] Add missing call to cpu_check_features().
-rw-r--r-- | functable.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/functable.c b/functable.c index acae446..32ab90e 100644 --- a/functable.c +++ b/functable.c @@ -241,6 +241,7 @@ Z_INTERNAL uint32_t adler32_stub(uint32_t adler, const unsigned char *buf, size_ Z_INTERNAL uint32_t chunksize_stub(void) { // Initialize default functable.chunksize = &chunksize_c; + cpu_check_features(); #ifdef X86_SSE2_CHUNKSET # if !defined(__x86_64__) && !defined(_M_X64) && !defined(X86_NOCHECK_SSE2) |