diff options
author | Nathan Moinvaziri <nathan@nathanm.com> | 2020-08-15 20:45:41 -0700 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2020-08-20 12:05:11 +0200 |
commit | d8aeacbfa285556fccef8f01af68bf02f1e671b0 (patch) | |
tree | 4de4362915bb799f88d4da1e2c17cb88fbd05eb9 /inflate.c | |
parent | 9fccbde10c91295a74df6363b4e08259b0d855f0 (diff) |
Harmonize the CPU architecture preprocessor definitions.
Diffstat (limited to 'inflate.c')
-rw-r--r-- | inflate.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -130,9 +130,9 @@ int32_t ZEXPORT PREFIX(inflateInit2_)(PREFIX3(stream) *strm, int32_t windowBits, int32_t ret; struct inflate_state *state; -#if defined(X86_CPUID) +#if defined(X86_FEATURES) x86_check_features(); -#elif defined(ARM_CPUID) +#elif defined(ARM_FEATURES) arm_check_features(); #endif |