Overview
Comment: | Fix accidentally left over movq |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
7a1b76cbecc74a331904baea7e44c6a4 |
User & Date: | js on 2023-10-28 18:50:47 |
Other Links: | manifest | tags |
Context
2023-10-28
| ||
18:55 | README.md: Fix typo check-in: d36ac8babf user: js tags: trunk | |
18:50 | Fix accidentally left over movq check-in: 7a1b76cbec user: js tags: trunk | |
18:45 | Remove unnecessary `short` from assembly check-in: 71d8f813ef user: js tags: trunk | |
Changes
Modified src/forwarding/apple-forwarding-amd64.S from [51cce4e244] to [6ad48a2ca8].
︙ | ︙ | |||
121 122 123 124 125 126 127 | _OFForward_stret: push rbp mov rbp, rsp /* Save all arguments */ sub rsp, 0xC0 /* 16-byte alignment */ | | | | | | | | | 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | _OFForward_stret: push rbp mov rbp, rsp /* Save all arguments */ sub rsp, 0xC0 /* 16-byte alignment */ mov [rbp - 0x08], rax mov [rbp - 0x10], rdi mov [rbp - 0x18], rsi mov [rbp - 0x20], rdx mov [rbp - 0x28], rcx mov [rbp - 0x30], r8 mov [rbp - 0x38], r9 movaps [rbp - 0x50], xmm0 movaps [rbp - 0x60], xmm1 movaps [rbp - 0x70], xmm2 movaps [rbp - 0x80], xmm3 movaps [rbp - 0x90], xmm4 movaps [rbp - 0xA0], xmm5 movaps [rbp - 0xB0], xmm6 |
︙ | ︙ |