aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crc32.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crc32.c b/crc32.c
index 166330d0..97eb5fda 100644
--- a/crc32.c
+++ b/crc32.c
@@ -106,7 +106,8 @@
106#endif 106#endif
107 107
108/* If available, use the ARM processor CRC32 instruction. */ 108/* If available, use the ARM processor CRC32 instruction. */
109#if defined(__aarch64__) && defined(__ARM_FEATURE_CRC32) && W == 8 109#if defined(__aarch64__) && defined(__ARM_FEATURE_CRC32) && \
110 defined(W) && W == 8
110# define ARMCRC32 111# define ARMCRC32
111#endif 112#endif
112 113