microx
microx copied to clipboard
Bug in pop rsp
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)