Skip to content

Commit 83457d3

Browse files
committed
[libc] dedup handling of size 4 for memset
1 parent ae0628f commit 83457d3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

libc/src/string/memory_utils/memset_utils.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ inline static void GeneralPurposeMemset(char *dst, unsigned char value,
6363
return SplatSet<_2>(dst, value);
6464
if (count == 3)
6565
return SplatSet<_3>(dst, value);
66-
if (count == 4)
67-
return SplatSet<_4>(dst, value);
6866
if (count <= 8)
6967
return SplatSet<HeadTail<_4>>(dst, value, count);
7068
if (count <= 16)

0 commit comments

Comments
 (0)