Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

Bug in pop rsp #23

Open
lkorenc opened this issue Sep 25, 2021 · 0 comments
Open

Bug in pop rsp #23

lkorenc opened this issue Sep 25, 2021 · 0 comments
Labels

Comments

@lkorenc
Copy link

lkorenc commented Sep 25, 2021

pop rsp currently returns result increased by 8 opposed to expected value. One possible explanation is that following happens:

new = *rsp
store(dst, new)
*rsp = *rsp + 8

instead of

new = *rsp
*rsp = *rsp + 8
store(dst, new)
@lkorenc lkorenc added the bug label Sep 25, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

1 participant