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