From 977e52304752913aef52709aa45bc3668bc1cf8b Mon Sep 17 00:00:00 2001 From: Harmen Stoppels Date: Tue, 16 Aug 2022 16:19:52 +0200 Subject: [PATCH] remove unused variable --- libc/intrin/strlen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/intrin/strlen.c b/libc/intrin/strlen.c index 1f09be783..88fcd9e9c 100644 --- a/libc/intrin/strlen.c +++ b/libc/intrin/strlen.c @@ -31,7 +31,7 @@ typedef char xmm_t __attribute__((__vector_size__(16), __aligned__(16))); */ noasan size_t strlen(const char *s) { size_t n; - xmm_t v, z = {0}; + xmm_t z = {0}; unsigned m, k = (uintptr_t)s & 15; const xmm_t *p = (const xmm_t *)((uintptr_t)s & -16); if (IsAsan()) __asan_verify(s, 1);