Commit b2ac1df
committed
Fix FPC x64 build: avoid invalid dword immediate in CRCFoldLsb32 SSE2 asm
FPC's x64 assembler rejects `and rax, $FFFFFFFF` (8011: signed dword out of
range). Use `mov eax, ebx` to zero-extend the 32-bit CRC into RAX for the
UInt64 return value.1 parent 82a0957 commit b2ac1df
1 file changed
Lines changed: 1 addition & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
125 | 125 | | |
126 | 126 | | |
127 | 127 | | |
128 | | - | |
129 | | - | |
| 128 | + | |
130 | 129 | | |
131 | 130 | | |
132 | 131 | | |
| |||
0 commit comments