summaryrefslogtreecommitdiff
path: root/functable.c
diff options
context:
space:
mode:
authorSebastian Pop <s.pop@samsung.com>2019-03-05 09:28:27 -0600
committerHans Kristian Rosbach <hk-github@circlestorm.org>2019-03-08 11:33:01 +0100
commite3fb33cc9a9047afb35a77bc934475b57631427f (patch)
treef4bb1b5135b756fb4d4567b1e17e63b27c5a5a82 /functable.c
parent3ee7109b7e36bf8330e95eaf9ffa87a90a859e24 (diff)
unify uses of __ARM_FEATURE_CRC32
Diffstat (limited to 'functable.c')
-rw-r--r--functable.c2
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