Compare commits

..

1 Commits

Author SHA1 Message Date
caleb-snow-cbm
b165b69200
Merge 94a3d57236 into 22e8cc318c 2025-03-07 19:19:18 -05:00

2
clay.h
View File

@ -1774,7 +1774,7 @@ bool Clay__MemCmp(const char *s1, const char *s2, int32_t length);
uint8x16_t v2 = vld1q_u8((const uint8_t *)s2); uint8x16_t v2 = vld1q_u8((const uint8_t *)s2);
// Compare vectors // Compare vectors
if (vminvq_u32(vreinterpretq_u32_u8(vceqq_u8(v1, v2))) != 0xFFFFFFFF) { // If there's a difference if (vminvq_u32(vceqq_u8(v1, v2)) != 0xFFFFFFFF) { // If there's a difference
return false; return false;
} }