-
Notifications
You must be signed in to change notification settings - Fork 38
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
Change unary operations to operate on OperandStack::top and not pop/push #463
Comments
An alternative, what would be compatible with "unsafe host functions" is to pass pointer to the top stack item. void unary_op(Value* top)
{
*top = op(*top);
} |
This is done. |
Which PR? |
Right I see in |
Could also do a similar experiment to evmone in |
In 998fab6.
This is already done this way. |
Damn, probably had an old code checked out locally when I looked. |
No description provided.
The text was updated successfully, but these errors were encountered: