Too many commas printed in address calculation (`[rdi, +, 4*rdx]`) · Issue #97 · gnzlbg/cargo-asm · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiling this code:
Results in this output:
In particular
mov eax, dword, ptr, [rdi, +, 4*rdx]
. There are commas in the address calculations, but there shouldn't be any.[rdi + 4*rdx]
[rdi, +, 4*rdx]
I think the main problem is in this code.
The text was updated successfully, but these errors were encountered: