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
Trying to go from Triton AST to LLVM IR by running some examples but getting unsupported node type 79 for BVSMOD
unsupported node type 79
Is it possible to support this in arybo or is there a workaround?
The text was updated successfully, but these errors were encountered:
I copied some code from TritonASTLLVMIRTranslator to arybo to hotfix-fix this:
def glue_for_bvsmod(lhs, rhs): srem = lhs.srem(rhs) add = srem.__add__(rhs) return add.srem(rhs)
I wanted to submit a PR but the testsuite for the triton part is very outdated so bumping it to work with the most recent Triton takes a bit more time
Sorry, something went wrong.
No branches or pull requests
Trying to go from Triton AST to LLVM IR by running some examples but getting
unsupported node type 79
for BVSMODIs it possible to support this in arybo or is there a workaround?
The text was updated successfully, but these errors were encountered: