Skip to content

Commit

Permalink
Fix a small typo in the i128 blog
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 authored Mar 31, 2024
1 parent ddfb55e commit 2891cda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posts/2024-03-30-i128-layout-update.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ section _3.2.3 Parameter Passing_:
We can try this out by implementing the calling convention manually. In the below C
example, inline assembly is used to call `foo(0xaf, val, val, val)` with `val` as
`0x0x11223344556677889900aabbccddeeff`.
`0x11223344556677889900aabbccddeeff`.
x86-64 uses the registers `rdi`, `rsi`, `rdx`, `rcx`, `r8`, and `r9` to pass function
arguments, in that order (you guessed it, this is also in the ABI). Each register
Expand Down

0 comments on commit 2891cda

Please sign in to comment.