aboutsummaryrefslogtreecommitdiff
path: root/c/dec/decode.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/dec/decode.c')
-rw-r--r--c/dec/decode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/dec/decode.c b/c/dec/decode.c
index 1fde329..8f72e85 100644
--- a/c/dec/decode.c
+++ b/c/dec/decode.c
@@ -6,7 +6,7 @@
#include <brotli/decode.h>
-#if defined(__ARM_NEON__)
+#if defined(BROTLI_TARGET_NEON)
#include <arm_neon.h>
#endif
@@ -167,7 +167,7 @@ static BrotliDecoderErrorCode DecodeWindowBits(BrotliDecoderState* s,
}
static BROTLI_INLINE void memmove16(uint8_t* dst, uint8_t* src) {
-#if defined(__ARM_NEON__)
+#if defined(BROTLI_TARGET_NEON)
vst1q_u8(dst, vld1q_u8(src));
#else
uint32_t buffer[4];