mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-08-09 03:10:27 +00:00
remove unused variable
This commit is contained in:
parent
7061c79c22
commit
977e523047
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ typedef char xmm_t __attribute__((__vector_size__(16), __aligned__(16)));
|
||||||
*/
|
*/
|
||||||
noasan size_t strlen(const char *s) {
|
noasan size_t strlen(const char *s) {
|
||||||
size_t n;
|
size_t n;
|
||||||
xmm_t v, z = {0};
|
xmm_t z = {0};
|
||||||
unsigned m, k = (uintptr_t)s & 15;
|
unsigned m, k = (uintptr_t)s & 15;
|
||||||
const xmm_t *p = (const xmm_t *)((uintptr_t)s & -16);
|
const xmm_t *p = (const xmm_t *)((uintptr_t)s & -16);
|
||||||
if (IsAsan()) __asan_verify(s, 1);
|
if (IsAsan()) __asan_verify(s, 1);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue