Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix Issue 21182 - asm code is missing int ptr and so defaults to byt… #7601

Merged
merged 1 commit into from Aug 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion std/internal/math/biguintx86.d
Expand Up @@ -1169,7 +1169,7 @@ outer_loop:
mov EBX, [ESP + LASTPARAM + 4*0]; // src.length
mov EBP, 0;
mov ECX, 0; // ECX = input carry.
dec [ESP + LASTPARAM + 4*0]; // Next time, the length will be shorter by 1.
dec int ptr [ESP + LASTPARAM + 4*0]; // Next time, the length will be shorter by 1.
neg EBX; // count UP to zero.

mov EAX, [ESI + 4*EBX - 4*1]; // get new M
Expand Down