Skip to content

Commit f408ed1

Browse files
authored
Clarify comment on faster instruction usage
1 parent b8e8eb2 commit f408ed1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

_posts/2025-11-30-comptime-c-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ main:
1515
push rax
1616
lea rdi, [rip + .Lstr]
1717
call puts@PLT ; printf() got translated to the faster puts()
18-
xor eax, eax ; `xor eax, eax` is a faster `mov eax, 0`; eax is the return value register
18+
xor eax, eax ; Faster than `mov eax, 0`; eax is the returned value
1919
pop rcx
2020
ret
2121
```

0 commit comments

Comments
 (0)