We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The repository contains invalid link to 020.md answer and also 021.md is missing. Is it intentional?
020.md
021.md
The text was updated successfully, but these errors were encountered:
From Wikipedia Tail Call
foo: call B call A ret Tail call elimination replaces the last two lines with a single jump instruction: foo: call B jmp A After subroutine A completes, it will then return directly to the return address of foo, omitting the unnecessary ret statement.
foo: call B call A ret
Tail call elimination replaces the last two lines with a single jump instruction:
foo: call B jmp A
After subroutine A completes, it will then return directly to the return address of foo, omitting the unnecessary ret statement.
Sorry, something went wrong.
No branches or pull requests
The repository contains invalid link to
020.md
answer and also021.md
is missing. Is it intentional?The text was updated successfully, but these errors were encountered: