Skip to content

Commit 892fc66

Browse files
authored
sse2neon: fix armhf build( fixes #157 )
1 parent 9bca259 commit 892fc66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/sse2neon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ FORCE_INLINE uint32_t _mm_crc32_u8(uint32_t, uint8_t);
420420

421421
// Older gcc does not define vld1q_u8_x4 type
422422
#if defined(__GNUC__) && !defined(__clang__) && \
423-
((__GNUC__ <= 10 && defined(__arm__)) || \
423+
(defined(__arm__)) || \
424424
(__GNUC__ == 10 && __GNUC_MINOR__ < 3 && defined(__aarch64__)) || \
425425
(__GNUC__ <= 9 && defined(__aarch64__)))
426426
FORCE_INLINE uint8x16x4_t _sse2neon_vld1q_u8_x4(const uint8_t *p)

0 commit comments

Comments
 (0)