From afbc6805427bc3bd2f78361cf713573cc4e07391 Mon Sep 17 00:00:00 2001 From: nillerusr <42746659+nillerusr@users.noreply.github.com> Date: Sat, 17 Dec 2022 18:27:04 +0300 Subject: [PATCH] sse2neon: fix armhf build( fixes #157 ) --- common/sse2neon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/sse2neon.h b/common/sse2neon.h index 490c0a45aa..006e870d4b 100644 --- a/common/sse2neon.h +++ b/common/sse2neon.h @@ -420,7 +420,7 @@ FORCE_INLINE uint32_t _mm_crc32_u8(uint32_t, uint8_t); // Older gcc does not define vld1q_u8_x4 type #if defined(__GNUC__) && !defined(__clang__) && \ - ((__GNUC__ <= 10 && defined(__arm__)) || \ + (defined(__arm__)) || \ (__GNUC__ == 10 && __GNUC_MINOR__ < 3 && defined(__aarch64__)) || \ (__GNUC__ <= 9 && defined(__aarch64__))) FORCE_INLINE uint8x16x4_t _sse2neon_vld1q_u8_x4(const uint8_t *p)