Open
Description
There are a few approaches for checking exit_after
- I'm curious which one is better.
One way is to match outside the loop first to see if it's set, then if it is, check it inside the loop.
Another way (the current method) is to match inside the loop for existence and do the check at the same time.
I've been trying to do this, but I can't seem to correlate the assembly created by cargo asm
with the debugger assembly. The instructions and stack offsets are slightly different, and I'm not sure why.