opti: use xor instead mov 0
This commit is contained in:
parent
50d50092bf
commit
a05124885e
@ -2,7 +2,7 @@ section .text
|
||||
global ft_strcmp
|
||||
|
||||
ft_strcmp:
|
||||
mov rcx, 0
|
||||
xor rcx, rcx
|
||||
|
||||
loop:
|
||||
mov dl, [rsi + rcx]
|
||||
|
@ -2,7 +2,7 @@ section .text
|
||||
global ft_strcpy
|
||||
|
||||
ft_strcpy:
|
||||
mov rcx, 0
|
||||
xor rcx, rcx
|
||||
loop:
|
||||
mov al, [rsi + rcx]
|
||||
|
||||
|
@ -2,7 +2,7 @@ section .text
|
||||
global ft_strlen
|
||||
|
||||
ft_strlen:
|
||||
mov rcx, 0
|
||||
xor rcx, rcx
|
||||
loop:
|
||||
cmp BYTE [rdi + rcx], 0
|
||||
je out
|
||||
|
Loading…
Reference in New Issue
Block a user