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
#153 has refactored the bytecode of calling internal functions,
self.table.offset(self.masm.pc_offset(), 5); self.table.call(self.masm.pc_offset(), index);
has not been supported yet, so here we are using
self.table.offset(self.masm.pc_offset(), 6); self.masm._jumpdest()?; self.table.call(self.masm.pc_offset(), index);
with one more JUMPDEST for enabling the feature
JUMPDEST
No response
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the feature
#153 has refactored the bytecode of calling internal functions,
has not been supported yet, so here we are using
with one more
JUMPDEST
for enabling the featureSolution
No response
The text was updated successfully, but these errors were encountered: