From 19a27b39f22181106dd0e71095e9e52fe2d79478 Mon Sep 17 00:00:00 2001 From: Daniel Collin Date: Sat, 8 Mar 2025 22:28:09 +0100 Subject: [PATCH] [Compilers] Fixed SIMD related compile error on some ARM compilers (#316) --- clay.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clay.h b/clay.h index 7d087dd..4972419 100644 --- a/clay.h +++ b/clay.h @@ -1771,7 +1771,7 @@ bool Clay__MemCmp(const char *s1, const char *s2, int32_t length); uint8x16_t v2 = vld1q_u8((const uint8_t *)s2); // Compare vectors - if (vminvq_u32(vceqq_u8(v1, v2)) != 0xFFFFFFFF) { // If there's a difference + if (vminvq_u32(vreinterpretq_u32_u8(vceqq_u8(v1, v2))) != 0xFFFFFFFF) { // If there's a difference return false; }