Skip to content

Commit 1689bbe

Browse files
[libc] fix up #77384
1 parent 7c89b20 commit 1689bbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/string/memory_utils/op_x86.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ template <> LIBC_INLINE uint32_t neq<__m512i>(CPtr p1, CPtr p2, size_t offset) {
234234
const auto b = load<__m512i>(p2, offset);
235235
const uint64_t xored = _mm512_cmpneq_epi8_mask(a, b);
236236
return static_cast<uint32_t>(xored >> 32) |
237-
static_cast<uint32_t>(xored & 0xFFFFFFFF));
237+
static_cast<uint32_t>(xored & 0xFFFFFFFF);
238238
}
239239
template <>
240240
LIBC_INLINE MemcmpReturnType cmp_neq<__m512i>(CPtr p1, CPtr p2, size_t offset) {

0 commit comments

Comments
 (0)