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
At present, the following is disallowed, because expressions are not permitted in the source:
%1 = or undef, 1 %2 = and undef, ~1 %3 = add %1, %2 %4 = and %3, 1 => %4 = 1
This could be resolved by
Adding general support for expressions in the source is not recommended, as this makes the C++ translation too complex.
The text was updated successfully, but these errors were encountered:
On further thought, it should be feasible to allow constant expressions in the source as long as they don't introduce new variables.
Sorry, something went wrong.
No branches or pull requests
At present, the following is disallowed, because expressions are not permitted in the source:
This could be resolved by
Adding general support for expressions in the source is not recommended, as this makes the C++ translation too complex.
The text was updated successfully, but these errors were encountered: