Skip to content
New issue

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

Missing answers to questions #70

Open
iddm opened this issue Jun 12, 2018 · 1 comment
Open

Missing answers to questions #70

iddm opened this issue Jun 12, 2018 · 1 comment

Comments

@iddm
Copy link

iddm commented Jun 12, 2018

The repository contains invalid link to 020.md answer and also 021.md is missing. Is it intentional?

@ghost
Copy link

ghost commented Aug 12, 2018

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant