diff options
author | Sebastian Pop <s.pop@samsung.com> | 2019-03-05 09:28:27 -0600 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2019-03-08 11:33:01 +0100 |
commit | e3fb33cc9a9047afb35a77bc934475b57631427f (patch) | |
tree | f4bb1b5135b756fb4d4567b1e17e63b27c5a5a82 /functable.c | |
parent | 3ee7109b7e36bf8330e95eaf9ffa87a90a859e24 (diff) |
unify uses of __ARM_FEATURE_CRC32
Diffstat (limited to 'functable.c')
-rw-r--r-- | functable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functable.c b/functable.c index ca5d0cf..b4f1d76 100644 --- a/functable.c +++ b/functable.c @@ -111,7 +111,7 @@ ZLIB_INTERNAL uint32_t crc32_stub(uint32_t crc, const unsigned char *buf, uint64 if (sizeof(void *) == sizeof(ptrdiff_t)) { #if BYTE_ORDER == LITTLE_ENDIAN functable.crc32=crc32_little; -# if __ARM_FEATURE_CRC32 && defined(ARM_ACLE_CRC_HASH) +# if defined(__ARM_FEATURE_CRC32) && defined(ARM_ACLE_CRC_HASH) if (arm_cpu_has_crc32) functable.crc32=crc32_acle; # endif |