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
When we have code like this, jmp L1 should be changed to jmp L2:
jmp L1
jmp L2
jmp L1 ... L1: jmp L2 ... L2:
This can happen for multiple hops as long as the jump is unconditional.
Original jump can conditional so this is also optimizable:
test rax, rax je L1 ... L1: jmp L2 ... L2:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When we have code like this,
jmp L1
should be changed tojmp L2
:This can happen for multiple hops as long as the jump is unconditional.
Original jump can conditional so this is also optimizable:
The text was updated successfully, but these errors were encountered: