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
crucible_points_to
This issue applies to the crucible-integration branch of saw-script.
crucible-integration
If we compile the following C file to LLVM bitcode
static int val = 3; int *test() { return (&val); }
and run the following saw-script command
crucible_llvm_verify "test" [] do { ret <- crucible_execute_func []; crucible_points_to ret (crucible_term {{ 3:[32] }}); };
then we get the following error
Non-pointer value in points-to assertion
even though the return value actually has pointer type.
The text was updated successfully, but these errors were encountered:
2456a89
Merge pull request #177 from GaloisInc/OpenTerm
c65d73e
Add `OpenTerm` operations.
brianhuffman
No branches or pull requests
This issue applies to the
crucible-integration
branch of saw-script.If we compile the following C file to LLVM bitcode
and run the following saw-script command
then we get the following error
even though the return value actually has pointer type.
The text was updated successfully, but these errors were encountered: