Skip to content

Commit 71d3595

Browse files
authored
Merge pull request #1389 from tgross35/tgross35-patch-1
Small typo on the i128 blog
2 parents 8a09cc4 + 6229501 commit 71d3595

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

posts/2024-03-30-i128-layout-update.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ int main() {
180180
/* load arguments that fit in registers */
181181
"movl $0xaf, %edi \n\t" /* 1st slot (edi): padding char (`edi` is the
182182
* same as `rdi`, just a smaller access size) */
183-
"movq $0x9900aabbccddeeff, %rsi \n\t" /* 2rd slot (rsi): lower half of `a` */
184-
"movq $0x1122334455667788, %rdx \n\t" /* 3nd slot (rdx): upper half of `a` */
183+
"movq $0x9900aabbccddeeff, %rsi \n\t" /* 2nd slot (rsi): lower half of `a` */
184+
"movq $0x1122334455667788, %rdx \n\t" /* 3rd slot (rdx): upper half of `a` */
185185
"movq $0x9900aabbccddeeff, %rcx \n\t" /* 4th slot (rcx): lower half of `b` */
186186
"movq $0x1122334455667788, %r8 \n\t" /* 5th slot (r8): upper half of `b` */
187187
"movq $0xdeadbeef4c0ffee0, %r9 \n\t" /* 6th slot (r9): should be unused, but

0 commit comments

Comments
 (0)